blob: 465277871c886a8e80813590241b9293d1205c1e [file] [log] [blame]
/*
* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion Given a switch statement of the form
* switch (e) { label11 … label1j1 case e1: s1 … labeln1 ..labelnjn case en: sn default: sn+1}
* or the form switch (e) { label11 … label1j1 case e1: s1 … labeln1 ..labelnjn case en: sn},
* it is a compile-time error if the expressions ek are not compile-time constants for all
* k = 1..n.
* @description Checks that it is a compile-time error if a case expression
* is not a compile-time constant.
* @compile-error
* @author msyabro
* @reviewer rodionov
*/
f() => 1;
main() {
try {
switch(1) {
case 0:
case 2:
case f():
}
} catch(e) {}
}