blob: 9c1fa9598ddfd2dc923c00d3cba4986e37d729c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: The undefined is DontDelete
esid: sec-undefined
description: Use delete
flags: [noStrict]
---*/
// CHECK#1
if (delete undefined !== false) {
throw new Test262Error('#1: delete undefined === false. Actual: ' + (delete undefined));
}
reportCompare(0, 0);
|