blob: 4c674d0e3638f7a792151e35c1ebbfec98f42ada [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.
* switch '(' expression ')' '{' switchCase* defaultCase? '}'
* ;
* switchCase:
* label* (case expression ':') statements
* ;
* defaultCase:
* label* default ':' statements
* ;
* @description Checks that it is a compile-time error if a label is not followed
* by case or default keywords.
* @compile-error
* @author kaigorodov
* @reviewer iefremov
*/
foo (value){
var result;
switch(value) {
case 0: break;
label:
}
return result;
}
main() {
try {
foo(1);
} catch(x) {}
}