Sign in
dart
/
sdk.git
/
9083597bcde6cc72f6509494daead73c64f28811
/
.
/
pkg
/
front_end
/
parser_testcases
/
patterns
/
constant_identifier_unprefixed_builtin.dart
blob: f9345e2ee28f5bd7a739658076ced55abd458455 [
file
]
void
f
(
x
)
{
const
y
=
abstract
;
// verify that this works
switch
(
x
)
{
case
abstract
:
break
;
}
}