Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
instantiate_to_bound
/
covariant_mutual_dependence.dart.textual_outline.expect
blob: 3deef45e0424fc11aaa33553f3baa7ea24537937 [
file
] [
log
] [
blame
]
class
B
<
X
,
Y
>
{}
class
C
<
X
,
Y
>
{}
class
D
<
X
extends
B
<
X
,
Y
>,
Y
extends
C
<
X
,
Y
>>
{}
D d
=
throw
''
;
class
E
<
X
extends
B
<
X
,
Y
>,
Y
extends
X
Function
()>
{}
E e
=
throw
''
;
class
F
<
X
extends
X
Function
()>
{}
F f
=
throw
''
;
main
()
{}