Sign in
dart
/
sdk.git
/
f860b70c98d03b454eb0ad2fba70e4e2c9641a6f
/
.
/
pkg
/
front_end
/
testcases
/
constructor_tearoffs
/
nongeneric_tearoff_without_context.dart.textual_outline.expect
blob: 7f58e61cd7cf228b8993c512e3a8c0800f148343 [
file
] [
log
] [
blame
]
class
A
{
A
.
foo
()
{}
A
()
{}
}
testFoo
()
=>
A
.
foo
;
testNew
()
=>
A
.
new
;
testFooExtraArgs
()
=>
A
<int>
.
foo
;
testNewExtraArgs
()
=>
A
<int>
.
new
;
main
()
{}