Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
general
/
no_such_method_forwarder.dart.textual_outline.expect
blob: bf31270eb542badd7100e6be65e226863dea9ee1 [
file
] [
log
] [
blame
]
// @dart = 2.9
class
X
{
void
_foo
()
async
{}
void
foo
()
=>
_foo
();
}
class
Y
implements
X
{
void
noSuchMethod
(
Invocation
_
)
{}
}
main
()
{}