| Index: pkg/front_end/testcases/inference/dont_infer_field_type_when_initializer_is_null.dart.strong.expect
|
| diff --git a/pkg/front_end/testcases/inference/dont_infer_field_type_when_initializer_is_null.dart.strong.expect b/pkg/front_end/testcases/inference/dont_infer_field_type_when_initializer_is_null.dart.strong.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a30eeb4fc1a8f1cd50fe2d66dda4ec58574f2846
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/dont_infer_field_type_when_initializer_is_null.dart.strong.expect
|
| @@ -0,0 +1,19 @@
|
| +library test;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +
|
| +class A extends core::Object {
|
| + static field dynamic x = null;
|
| + static field core::int y = 3;
|
| + field dynamic x2 = null;
|
| + field core::int y2 = 3;
|
| + constructor •() → void
|
| + : super core::Object::•()
|
| + ;
|
| +}
|
| +static field dynamic x = null;
|
| +static field core::int y = 3;
|
| +static method main() → dynamic {
|
| + self::x;
|
| + self::y;
|
| +}
|
|
|