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;