Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
infer_setter_from_later_inferred_setter.dart.textual_outline.expect
blob: 9f48a642fd2f5ba88b297522c7fdda1925593c8b [
file
] [
log
] [
blame
]
library test
;
class
A
implements
B
{
void
set
x
(
value
)
{}
}
abstract
class
B
implements
C
{
void
set
x
(
value
);
}
abstract
class
C
{
void
set
x
(
int
value
);
}
main
()
{}