Sign in
dart
/
sdk
/
2ae211e5dcabfe8b57c397bb97ca60a64cf397ee
/
.
/
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
;
}
}