Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
no_such_method_forwarders
/
nsm_inherited.dart.textual_outline.expect
blob: c4c4bc09377781010e29e965e11146ffcad28ac0 [
file
] [
log
] [
blame
]
// @dart = 2.9
class
M
{
dynamic
noSuchMethod
(
Invocation
invocation
)
=>
null
;
}
class
A
extends
M
{
void
call
(
String
s
);
}
main
()
{}