Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
no_such_method_forwarders
/
no_forwarders_for_abstract_classes.dart.textual_outline.expect
blob: 82f268247609e16367ec6c9337e4f2f834c46456 [
file
] [
log
] [
blame
]
// @dart = 2.9
abstract
class
A
{
noSuchMethod
(
i
)
=>
null
;
void
foo
();
}
class
B
extends
A
{}
main
()
{}