Files
sdk/pkg/front_end/parser_testcases/patterns/cast_inside_case.dart
T
Johnni Winther dc7df3218e [cfe] Add parser tests for patterns
These tests are copied from
pkg/analyzer/test/generated/patterns_parser_test.dart

Change-Id: Ib5fd7ca8c22dd24bf5334ac87140d961bc80838a
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/261660
Commit-Queue: Johnni Winther <johnniwinther@google.com>
Reviewed-by: Jens Johansen <jensj@google.com>
2022-09-29 09:08:57 +00:00

8 lines
86 B
Dart

test(dynamic x) {
const y = 1;
switch (x) {
case y as int:
break;
}
}