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