Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
infer_types_on_generic_instantiations_4.dart.textual_outline.expect
blob: 1684bf578fdab8b4ee6ecb9d4c1260a86abae244 [
file
] [
log
] [
blame
]
library test
;
class
A
<
T
>
{
T x
=
throw
''
;
}
class
B
<
E
>
extends
A
<
E
>
{
E y
=
throw
''
;
get
x
=>
y
;
}
foo
()
{}
main
()
{}