Sign in
dart
/
sdk.git
/
f860b70c98d03b454eb0ad2fba70e4e2c9641a6f
/
.
/
pkg
/
front_end
/
testcases
/
constructor_tearoffs
/
nongeneric_tearoff_with_context.dart.textual_outline.expect
blob: 9ff49d9307f6a830c2a430b939bdac91e65fb850 [
file
] [
log
] [
blame
]
class
A
{
A
.
foo1
()
{}
A
.
foo2
(
int
x
)
{}
A
()
{}
}
A
Function
()
test1
()
=>
A
.
foo1
;
A
Function
()
test2
()
=>
A
.
foo2
;
A
Function
()
test3
()
=>
A
.
new
;
A
Function
(
int
)
test4
()
=>
A
.
new
;
main
()
{}