blob: 447cd50da00e19c48508cb0be57517722a6fdb4d [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 with initialisers in statement positions:
case Expression : StatementList
---*/
switch (true) { case true: const x = 1; }