Sign in
dart
/
sdk
/
base
/
.
/
pkg
/
front_end
/
parser_testcases
/
patterns
/
cast_insideNullAssert.dart
blob: ef4ffc96a178d8ea934246ec735964c65088d19d [
file
] [
log
] [
blame
]
void
f
(
x
)
{
const
y
=
1
;
switch
(
x
)
{
case
y
as
int
!:
break
;
}
}