Sign in
dart
/
sdk
/
base
/
.
/
pkg
/
front_end
/
parser_testcases
/
patterns
/
issue51415.dart
blob: 718cfc3a12f91e1db37880d793605c73db37af55 [
file
] [
log
] [
blame
]
void
foo
()
{
if
(
obj
case
(
longFieldName
:
const
(
first
:
1
,
second
:
2
)))
{;}
if
(
obj
case
const
(
element
,
element
,
element
,
element
))
{;}
if
(
obj
case
Foo
(
longFieldName
:
const
(
first
:
1
,
second
:
2
)))
{;}
}