| Index: pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_infer.dart
|
| diff --git a/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_infer.dart b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_infer.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..053e02ff02c9063ba0270fe6421c0a93e5c39113
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/infer_types_on_generic_instantiations_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<T> {
|
| + final T x = null;
|
| +}
|
| +
|
| +class B implements A<int> {
|
| + /*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;
|
| +}
|
|
|