Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
infer_types_on_generic_instantiations_4.dart.textual_outline.expect
blob: 9ddab960a3923fb902c0e3016f48ed393f3c5e11 [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
class
A
<
T
>
{
T x
;
}
class
B
<
E
>
extends
A
<
E
>
{
E y
;
get
x
=>
y
;
}
foo
()
{}
main
()
{}