| Index: pkg/front_end/testcases/inference/do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart.direct.expect
|
| diff --git a/pkg/front_end/testcases/inference/do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart.direct.expect b/pkg/front_end/testcases/inference/do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart.direct.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8c3a753c1f18e9d11fee76b711c12b066c48173f
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart.direct.expect
|
| @@ -0,0 +1,24 @@
|
| +library test;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +
|
| +class A extends core::Object {
|
| + final field core::int x = 2;
|
| + default constructor •() → void
|
| + : super core::Object::•()
|
| + ;
|
| +}
|
| +class B extends core::Object implements self::A {
|
| + default constructor •() → void
|
| + : super core::Object::•()
|
| + ;
|
| + get x() → dynamic
|
| + return 3;
|
| +}
|
| +static method foo() → dynamic {
|
| + core::String y = new self::B::•().x;
|
| + core::int z = new self::B::•().x;
|
| +}
|
| +static method main() → dynamic {
|
| + self::foo();
|
| +}
|
|
|