| Index: pkg/front_end/testcases/inference/unsafe_block_closure_inference_method_call_no_type_param.dart
|
| diff --git a/pkg/front_end/testcases/inference/unsafe_block_closure_inference_method_call_no_type_param.dart b/pkg/front_end/testcases/inference/unsafe_block_closure_inference_method_call_no_type_param.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b6061bc0ca3727922b50644bafc64c652fe884cf
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/unsafe_block_closure_inference_method_call_no_type_param.dart
|
| @@ -0,0 +1,14 @@
|
| +// 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 {
|
| + double f(x) => 1.0;
|
| +}
|
| +
|
| +var /*@topType=double*/ v = new C().f(/*@returnType=int*/ () {
|
| + return 1;
|
| +});
|
|
|