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