Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
downwards_inference_inside_top_level.dart.textual_outline.expect
blob: 8ab9e1a35aea9bbe5d6a12323ee34b4fd03dc842 [
file
] [
log
] [
blame
]
library test
;
class
A
{
late B
<int>
b
;
}
class
B
<
T
>
{
B
(
T x
);
}
var
t1
=
new
A
()..
b
=
new
B
(
1
);
var
t2
=
<
B
<int>
>[
new
B
(
2
)];
main
()
{}