Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
inheritance_does_not_imply_circularity.dart.textual_outline_modelled.expect
blob: 71382d798dbf753e57dd53964cbe3c30c09ddc93 [
file
] [
log
] [
blame
]
library test
;
abstract
class
I2
{
num
get
x
;
}
class
C
extends
Object
implements
I1
,
I2
{
int
get
x
=>
0
;
}
class
I1
{
final
x
=
y
;
}
main
()
{}
var
y
=
new
C
().
x
;