Index: pkg/front_end/testcases/inference_new/infer_instance_field_ref.dart.direct.expect |
diff --git a/pkg/front_end/testcases/inference_new/infer_instance_field_ref.dart.direct.expect b/pkg/front_end/testcases/inference_new/infer_instance_field_ref.dart.direct.expect |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3b8b25ef21732136087761ab85e85b5d3bf87bf0 |
--- /dev/null |
+++ b/pkg/front_end/testcases/inference_new/infer_instance_field_ref.dart.direct.expect |
@@ -0,0 +1,30 @@ |
+library test; |
+import self as self; |
+import "dart:core" as core; |
+ |
+class A extends core::Object { |
+ field self::B b = null; |
+ constructor •() → void |
+ : super core::Object::•() |
+ ; |
+} |
+class B extends core::Object { |
+ field self::C c = null; |
+ constructor •() → void |
+ : super core::Object::•() |
+ ; |
+} |
+class C extends core::Object { |
+ constructor •() → void |
+ : super core::Object::•() |
+ ; |
+} |
+class D extends self::C { |
+ constructor •() → void |
+ : super self::C::•() |
+ ; |
+} |
+static field dynamic a = new self::A::•(); |
+static field dynamic x = self::a.b.c; |
+static field dynamic y = let final dynamic #t1 = self::a.b in let final dynamic #t2 = #t1.c in #t2.==(null) ? #t1.c = new self::D::•() : #t2; |
+static method main() → dynamic {} |