Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
constructors_infer_from_arguments_factory_calls_constructor.dart.textual_outline.expect
blob: e3c1708ff5f8c676e61dc94f45ec4b6202ca1b1d [
file
] [
log
] [
blame
]
library test
;
class
A
<
T
>
{
A
<
T
>
f
=
new
A
();
A
();
factory A
.
factory
()
=>
new
A
();
A
<
T
>
m
()
=>
new
A
();
}
main
()
{}