blob: 5cb77242e7c80a1f84c35679c929755f4f8050c2 [file] [log] [blame]
// Copyright (C) 2011 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 13.1
description: >
const declarations without initialisers in statement positions:
if ( Expression ) Statement else Statement
negative:
phase: parse
type: SyntaxError
---*/
throw "Test262: This statement should not be evaluated.";
if (true) {} else const x;