Sign in
dart
/
sdk.git
/
refs/tags/2.13.0-2.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
no_such_method_forwarders
/
setter_not_shadowed_by_method.dart.textual_outline.expect
blob: 3ae19c6fc9acc3b06230fe415458ad13156407b0 [
file
] [
log
] [
blame
]
class
A
{
void
foo
(
int
x
)
{}
void
set
foo
(
int
x
);
dynamic
noSuchMethod
(
Invocation
i
)
=>
null
;
}
main
()
{}