Sign in
webkit
/
WebKit
/
dd9931074fb7e5ae3be0279ead0eeaae76d5ad40
/
.
/
LayoutTests
/
fast
/
js
/
script-tests
/
const-without-initializer.js
blob: 8b5b6b133b995cc298a5bde675cedc2e5186626e [
file
] [
log
] [
blame
]
description
(
'Tests that declaring a const variable without initializing has the correct behavior and does not crash'
);
const
f
;
shouldBe
(
'f'
,
'undefined'
);
f
=
10
;
shouldBe
(
'f'
,
'undefined'
);
var
successfullyParsed
=
true
;