Index: pkg/front_end/testcases/inference_new/field_inference_circularity.dart.direct.expect |
diff --git a/pkg/front_end/testcases/inference_new/field_inference_circularity.dart.direct.expect b/pkg/front_end/testcases/inference_new/field_inference_circularity.dart.direct.expect |
new file mode 100644 |
index 0000000000000000000000000000000000000000..88b72a580b8b71e46ea5e6d30a12fdbd15ddc499 |
--- /dev/null |
+++ b/pkg/front_end/testcases/inference_new/field_inference_circularity.dart.direct.expect |
@@ -0,0 +1,19 @@ |
+library test; |
+import self as self; |
+import "dart:core" as core; |
+ |
+class A extends core::Object { |
+ field dynamic x = () → dynamic => new self::B::•().x; |
+ field dynamic y = () → dynamic => new self::B::•().x; |
+ constructor •() → void |
+ : super core::Object::•() |
+ ; |
+} |
+class B extends self::A { |
+ field dynamic x = null; |
+ field dynamic y = null; |
+ constructor •() → void |
+ : super self::A::•() |
+ ; |
+} |
+static method main() → dynamic {} |