Sign in
dart
/
sdk.git
/
refs/tags/2.13.0-2.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
no_such_method_forwarders
/
concrete_method_over_forwarder_in_mixin_application.dart.textual_outline.expect
blob: d94d661d1bf81834a7b15a2ad633c942ed01baf5 [
file
] [
log
] [
blame
]
abstract
class
I
{
foo
();
}
class
A
{
foo
()
{}
}
class
B
implements
I
{
noSuchMethod
(
_
)
=>
null
;
}
class
C
extends
A
with
B
{}
main
()
{}