| Index: pkg/front_end/testcases/inference/generic_methods_infer_generic_function_return_type.dart
|
| diff --git a/pkg/front_end/testcases/inference/generic_methods_infer_generic_function_return_type.dart b/pkg/front_end/testcases/inference/generic_methods_infer_generic_function_return_type.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..36a1836d6297623f367947480d9b534f11f96e30
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/generic_methods_infer_generic_function_return_type.dart
|
| @@ -0,0 +1,16 @@
|
| +// 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 C<T> extends D<T> {
|
| + f<U>(x) {}
|
| +}
|
| +
|
| +class D<T> {
|
| + F<U> f<U>(U u) => null;
|
| +}
|
| +
|
| +typedef V F<V>();
|
|
|