Sign in
dart
/
sdk.git
/
f860b70c98d03b454eb0ad2fba70e4e2c9641a6f
/
.
/
pkg
/
front_end
/
testcases
/
implicit_getter_calls
/
this_field_call.dart.textual_outline_modelled.expect
blob: 4b5395ba551bc55aac122c4838af327cbd8deb4f [
file
] [
log
] [
blame
]
// @dart = 2.9
class
A
<
T
>
{
A
(
this
.
f
);
foo
(
T x
)
=>
this
.
f
(
x
);
void
Function
(
T
)
f
;
}
main
()
{}