Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
no_such_method_forwarders
/
setter_not_shadowed_by_method.dart.textual_outline_modelled.expect
blob: 1b9cf7596ecb55d3535af6e3ecddd4986701cb1f [
file
] [
log
] [
blame
]
// @dart = 2.9
class
A
{
dynamic
noSuchMethod
(
Invocation
i
)
=>
null
;
void
foo
(
int
x
)
{}
void
set
foo
(
int
x
);
}
main
()
{}