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