Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
nnbd
/
issue42546.dart.textual_outline_modelled.expect
blob: 5198cb831b3c29e2edcc31f4601f13a8a55b4b93 [
file
] [
log
] [
blame
]
import
'dart:async'
;
class
Divergent
<
T
>
implements
Future
<
Divergent
<
Divergent
<
T
>>>
{
noSuchMethod
(
Invocation
invocation
)
=>
super
.
noSuchMethod
(
invocation
);
}
main
()
{}
test
()
async
{}