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