Files
sdk/pkg/front_end/testcases/inference/switch_continue.dart
T
Johnni Winther 404fbe553b [cfe] Always create PatternSwitchStatement when patterns are enabled
This ensures that an otherwise regular switch statement has the new
switch statements semantics; using == calls and allowing user defined
== implementations.

Closes #50871

Change-Id: I0908b3a0adce959fe65ca61c5e94cf2a5e3f7e65
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/280109
Commit-Queue: Johnni Winther <johnniwinther@google.com>
Reviewed-by: Chloe Stefantsova <cstefantsova@google.com>
2023-02-01 19:08:54 +00:00

24 lines
570 B
Dart

// Copyright (c) 2017, 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.
/*@testedFeatures=inference*/
library test;
// Note: there are no expectations to fulfill here; we just want to make sure
// that inference completes without crashing.
void test(int x, void f()) {
switch (x) {
case /*@target=num.==*/ 0:
f();
continue L;
L:
case /*@target=num.==*/ 1:
f();
break;
}
}
main() {}