Sign in
webkit
/
WebKit
/
10627ba484528fed3e7358b1801250bb004c8a99
/
.
/
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"
);