| Index: pkg/front_end/testcases/inference/do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart
|
| diff --git a/pkg/front_end/testcases/inference/do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart b/pkg/front_end/testcases/inference/do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ebeece0a0bc857a03981bece1e9536ec421397b4
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart
|
| @@ -0,0 +1,19 @@
|
| +// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +/*@testedFeatures=inference*/
|
| +library test;
|
| +
|
| +class A {
|
| + final int x = 2;
|
| +}
|
| +
|
| +class B implements A {
|
| + /*error:INVALID_METHOD_OVERRIDE*/ dynamic get x => 3;
|
| +}
|
| +
|
| +foo() {
|
| + String y = /*info:DYNAMIC_CAST*/ new B().x;
|
| + int z = /*info:DYNAMIC_CAST*/ new B().x;
|
| +}
|
|
|