summaryrefslogtreecommitdiff
path: root/test/language/expressions/delete/11.4.1-5-a-18-s.js
blob: eb1af56e10d583876cda1b7dfa94ac2d8ded7590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 11.4.1-5-a-18-s
description: >
    Strict Mode - SyntaxError is thrown when deleting a built-in
    (Object)
flags: [onlyStrict]
---*/


assert.throws(SyntaxError, function() {
            eval("delete Object;");
});