dart-sdk/tests/language/switch/switch1_test.dart
Robert Nystrom 872422fa22 [flip-patterns] Update switch tests now that break is no longer required.
Change-Id: If32a8133f89a0ee5e0961657b8fc461b30561226
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/286869
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Jake Macdonald <jakemac@google.com>
Commit-Queue: Jake Macdonald <jakemac@google.com>
2023-03-06 15:48:25 +00:00

23 lines
623 B
Dart

// Copyright (c) 2019, 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.
// SharedOptions=--enable-experiment=patterns,records
/// Check that default clause must be last case.
main() {
var a = 5;
var x;
S: switch (a) {
case 1: x = 1; break;
case 6: x = 2; break S;
default:
case 8: break;
// ^^^^
// [analyzer] SYNTACTIC_ERROR.SWITCH_HAS_CASE_AFTER_DEFAULT_CASE
// [cfe] The default case should be the last case in a switch statement.
}
return a;
}