Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
super_property_set_substitution.dart.textual_outline_modelled.expect
blob: a6e272f732a9c6d7d7405854559a15ade638db6b [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
import
'dart:async'
;
T f
<
T
>()
=>
null
;
class
B
<
T
>
{
D
<
T
>
x
;
}
class
C
<
U
>
extends
B
<
Future
<
U
>>
{
E
<
Future
<
U
>>
get
x
=>
null
;
void
g
()
{}
void
set
x
(
Object
x
)
{}
}
class
D
<
T
>
{}
class
E
<
T
>
extends
D
<
T
>
{}
main
()
{}