mirror of https://github.com/tc39/test262.git
24 lines
389 B
JavaScript
24 lines
389 B
JavaScript
|
function foo() {
|
||
|
return {
|
||
|
get: function () { },
|
||
|
set: Object,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
var exception;
|
||
|
try {
|
||
|
Object.defineProperties({}, {
|
||
|
2: foo(),
|
||
|
0: foo(),
|
||
|
1: foo(),
|
||
|
' ': foo(),
|
||
|
9: foo(),
|
||
|
B: 'B',
|
||
|
});
|
||
|
} catch (e) {
|
||
|
exception = e;
|
||
|
}
|
||
|
|
||
|
if (exception != "TypeError: Property description must be an object.")
|
||
|
throw "FAILED";
|