Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields2.dart.textual_outline.expect
blob: aa0f06641d8abe6b0763c849a5f8ed03be4982f5 [
file
] [
log
] [
blame
]
library test
;
class
A
{
final
x
=
null
;
}
class
B
implements
A
{
final
x
=
2
;
}
foo
()
{}
main
()
{}