Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields2.dart.textual_outline.expect
blob: b67f00da68bb8ff8181e9d569c67ca6b375f57bc [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
class
A
{
final
x
=
null
;
}
class
B
implements
A
{
final
x
=
2
;
}
foo
()
{}
main
()
{}