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_modelled.expect
blob: c1ccdb0fb8e1dca2327bcee58ddc9dffeba6339f [
file
] [
log
] [
blame
]
class
A
{
dynamic
noSuchMethod
(
Invocation
i
)
=>
null
;
void
foo
(
int
x
)
{}
void
set
foo
(
int
x
);
}
main
()
{}