Sign in
dart
/
sdk.git
/
refs/tags/2.13.0-2.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
no_such_method_forwarders
/
subst_on_forwarder.dart.textual_outline_modelled.expect
blob: 1762a6e61ba5de387283b061d8db3fbc9324fb6f [
file
] [
log
] [
blame
]
abstract
class
I
<
T
>
{
T foo
();
}
class
A
extends
Object
with
M
implements
I
<int>
{}
class
M
{
dynamic
noSuchMethod
(
Invocation
i
)
{}
}
main
()
{}