blob: 5136a9bb789fbfa5d16672c6bea2a99a3a6d647b [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 The switch statement supports dispatching control among a large
* number of cases.
* switchStatement:
* switch '(' expression ')' '{' switchCase* defaultCase? '}'
* ;
* switchCase:
* label* case expression ':' statements
* ;
* defaultCase:
* label* default ':' statements
* ;
* @description Checks that it is a compile-time error if the default case is
* not the last case of a switch statement.
* @compile-error
* @author vasya
* @reviewer rodionov
* @reviewer iefremov
*/
foo(value) {
var result;
switch (value) {
case 0: break;
default: break;
case 1: break;
}
return result;
}
main() {
try {
foo(1);
} catch (x) {}
}