Sign in
dart
/
sdk.git
/
cd65076031d67dde752af5a4b8fe0224f9d2b5fb
/
.
/
pkg
/
front_end
/
testcases
/
inference_new
/
downwards_inference_inside_top_level.dart.textual_outline.expect
blob: d781f4da49a7b48b4585cfba1fca6c91f2e2f147 [
file
] [
log
] [
blame
]
library test
;
class
A
{
B
<int>
b
;
}
class
B
<
T
>
{
B
(
T x
);
}
var
t3
=
[
new
B
(
3
)];
main
()
{}