Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
inference_new
/
infer_instance_accessor_ref.dart.textual_outline_modelled.expect
blob: aadf0b15015fc3156849a38969a3f8b256d6e241 [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
class
A
{
B b
;
}
class
B
{
C
get
c
=>
null
;
void
set
c
(
C value
)
{}
}
class
C
{}
class
D
extends
C
{}
main
()
{}
var
a
=
new
A
();
var
x
=
a
.
b
.
c
;
var
y
=
a
.
b
.
c
??=
new
D
();