Sign in
webkit
/
WebKit
/
2ab9dfaee5c791e0d7b2c0893a55ced8677e2e2a
/
.
/
JSTests
/
es6
/
class_implicit_strict_mode.js
blob: 7b3a2dd430bdca712ce79e3c179dba75bb9bce80 [
file
] [
log
] [
blame
]
function
test
()
{
class
C
{
static
method
()
{
return
this
===
undefined
;
}
}
return
(
0
,
C
.
method
)();
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);