| Index: pkg/front_end/testcases/inference/generic_methods_correctly_recognize_generic_upper_bound.dart
|
| diff --git a/pkg/front_end/testcases/inference/generic_methods_correctly_recognize_generic_upper_bound.dart b/pkg/front_end/testcases/inference/generic_methods_correctly_recognize_generic_upper_bound.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..069d5a3b8bec58882ec8f059fc499fb79ff58ebb
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/generic_methods_correctly_recognize_generic_upper_bound.dart
|
| @@ -0,0 +1,26 @@
|
| +// 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 Foo<T extends Pattern> {
|
| + U method<U extends T>(U u) => u;
|
| +}
|
| +
|
| +main() {
|
| +/*!!!
|
| + String s;
|
| + var a = new Foo().method<String>("str");
|
| + s = a;
|
| + new Foo();
|
| +
|
| + var b = new Foo<String>().method("str");
|
| + s = b;
|
| + var c = new Foo().method("str");
|
| + s = c;
|
| + */
|
| +
|
| + new Foo<String>(). /*error:COULD_NOT_INFER*/ method(42);
|
| +}
|
|
|