Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
nnbd
/
issue42546.dart.textual_outline.expect
blob: 03033606e59e0cf285ee31d891a491b14970f3e2 [
file
] [
log
] [
blame
]
import
'dart:async'
;
class
Divergent
<
T
>
implements
Future
<
Divergent
<
Divergent
<
T
>>>
{
noSuchMethod
(
Invocation
invocation
)
=>
super
.
noSuchMethod
(
invocation
);
}
test
()
async
{}
main
()
{}