| Index: pkg/front_end/testcases/inference/unsafe_block_closure_inference_method_call_implicit_type_param.dart
|
| diff --git a/pkg/front_end/testcases/inference/unsafe_block_closure_inference_method_call_implicit_type_param.dart b/pkg/front_end/testcases/inference/unsafe_block_closure_inference_method_call_implicit_type_param.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..63fc7f21ab23f009590fe517b755d041e1bb5443
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/unsafe_block_closure_inference_method_call_implicit_type_param.dart
|
| @@ -0,0 +1,17 @@
|
| +// 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 {
|
| + List<T> f<T>(T g()) => <T>[g()];
|
| +}
|
| +
|
| +main() {
|
| + var /*@type=List<int>*/ v = new C().f(
|
| + /*@returnType=int*/ () {
|
| + return 1;
|
| + });
|
| +}
|
|
|