Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
infer_types_on_generic_instantiations_infer.dart.textual_outline.expect
blob: 744b33bb3b256ae6408a8337e46d49efcb536dc8 [
file
] [
log
] [
blame
]
library test
;
class
A
<
T
>
{
final
T x
=
throw
''
;
}
class
B
implements
A
<int>
{
dynamic
get
x
=>
3
;
}
foo
()
{}
main
()
{}