Sign in
dart
/
sdk.git
/
f860b70c98d03b454eb0ad2fba70e4e2c9641a6f
/
.
/
pkg
/
front_end
/
testcases
/
constructor_tearoffs
/
generic_tearoff_without_context.dart.textual_outline.expect
blob: 79f321c2c4d401e20d19679f3d841ef732ff14ad [
file
] [
log
] [
blame
]
class
A
<
X
>
{
A
.
foo
()
{}
A
()
{}
}
testFoo
()
=>
A
.
foo
;
testFooArgs
()
=>
A
<int>
.
foo
;
testNew
()
=>
A
.
new
;
testNewArgs
()
=>
A
<int>
.
new
;
testFooExtraArgs
()
=>
A
<
int
,
String
>.
foo
;
testNewExtraArgs
()
=>
A
<
int
,
String
>.
new
;
main
()
{}