blob: aca9495a17869122e1c4cf9c5e4fe98c12e801e4 [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.
// @dart = 2.9
/// @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 switch expression
/// is missing.
/// @author vasya
/// @reviewer rodionov
/// @reviewer iefremov
switchTest(value) {
var result;
switch () {
// ^
// [analyzer] unspecified
// [cfe] unspecified
case 0: break;
}
return result;
}
main() {
try {
switchTest(1);
} catch (x) {}
}