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