| Index: pkg/front_end/testcases/inference/unsafe_block_closure_inference_closure_call.dart
|
| diff --git a/pkg/front_end/testcases/inference/unsafe_block_closure_inference_closure_call.dart b/pkg/front_end/testcases/inference/unsafe_block_closure_inference_closure_call.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2fd00ae8afa587be71790ae123cd0d62b884ced8
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/unsafe_block_closure_inference_closure_call.dart
|
| @@ -0,0 +1,13 @@
|
| +// 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;
|
| +
|
| +main() {
|
| + var /*@type=double*/ v = (/*@returnType=double*/ (/*@type=dynamic*/ x) =>
|
| + 1.0)(/*@returnType=int*/ () {
|
| + return 1;
|
| + });
|
| +}
|
|
|