Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
conflicts_can_happen.dart.textual_outline.expect
blob: d521e4fa2370825fb66cf6857e48f85691810375 [
file
] [
log
] [
blame
]
library test
;
class
I1
{
int
x
=
0
;
}
class
I2
extends
I1
{
int
y
=
0
;
}
class
A
{
final
I1 a
=
throw
''
;
}
class
B
{
final
I2 a
=
throw
''
;
}
class
C1
implements
A
,
B
{
get
a
=>
throw
''
;
}
class
C2
implements
B
,
A
{
get
a
=>
throw
''
;
}
main
()
{}