872422fa22
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>
28 lines
585 B
Dart
28 lines
585 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
|
|
|
|
/// Discover unresolved case labels.
|
|
|
|
main() {
|
|
var a = 5;
|
|
var x;
|
|
switch (a) {
|
|
case 1:
|
|
x = 1;
|
|
continue L;
|
|
// ^
|
|
// [cfe] Can't find label 'L'.
|
|
// ^
|
|
// [analyzer] COMPILE_TIME_ERROR.LABEL_UNDEFINED
|
|
case 6:
|
|
x = 2;
|
|
break;
|
|
case 8:
|
|
break;
|
|
}
|
|
return a;
|
|
}
|