Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
infer_correctly_on_multiple_variables_declared_together.dart.textual_outline.expect
blob: d94d39fc4f763769c35e0f34fcb50acdcc61cf8d [
file
] [
log
] [
blame
]
library test
;
String
?
nullableString
=
"hi"
;
class
A
{
var
x
,
y
=
2
,
z
=
nullableString
;
}
class
B
implements
A
{
var
x
=
2
,
y
=
3
,
z
,
w
=
2
;
}
foo
()
{}
main
()
{}