blob: f55b3a166983dce150c4400c1b42d1ac59e8b144 [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
/// repeated.
/// @compile-error
/// @author vasya
foo(value) {
var result;
switch(value) {
case 0: break;
default:
default: break;
}
return result;
}
main() {}