6f752165ea
Closes #51553 Change-Id: I1a1174e786eeb79db42e6da940a03cf05c2dabe5 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/286823 Reviewed-by: Chloe Stefantsova <cstefantsova@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
13 lines
297 B
Dart
13 lines
297 B
Dart
// Copyright (c) 2023, 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.
|
|
|
|
main() {
|
|
switch (0) {
|
|
case 1:
|
|
continue L;
|
|
L:
|
|
default:
|
|
}
|
|
}
|