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