Sign in
webkit
/
WebKit
/
24e422ba3fd9aecfc4bf76f3dddf0b1a503c43cc
/
.
/
JSTests
/
es6
/
miscellaneous_duplicate_property_names_in_strict_mode.js
blob: 85da5bb18535eba0c58c8353bb3644a063161cc3 [
file
] [
log
] [
blame
]
function
test
()
{
'use strict'
;
return
this
===
undefined
&&
({
a
:
1
,
a
:
1
}).
a
===
1
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);