Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
infer_types_on_generic_instantiations_3.dart.textual_outline_modelled.expect
blob: 48638bab058df3e6bcfa9c56131b2c9da390eacb [
file
] [
log
] [
blame
]
library test
;
class
A
<
T
>
{
final
T w
=
throw
''
;
final
T x
=
throw
''
;
}
class
B
implements
A
<int>
{
get
w
=>
"hello"
;
get
x
=>
3
;
}
foo
()
{}
main
()
{}