Sign in
dart
/
sdk.git
/
refs/tags/2.13.0-2.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
no_such_method_forwarders
/
nsm_inherited.dart.textual_outline.expect
blob: 7ce56aee23fe053008f302d4468ac68487719139 [
file
] [
log
] [
blame
]
class
M
{
dynamic
noSuchMethod
(
Invocation
invocation
)
=>
null
;
}
class
A
extends
M
{
void
call
(
String
s
);
}
main
()
{}