Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
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
()
{}