Sign in
dart
/
sdk.git
/
03fd2aaa4eae56cfcfc9d0bcd0ca9f3d5946ca18
/
.
/
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
;
}
}