| Index: pkg/front_end/testcases/inference/unsafe_block_closure_inference_function_call_implicit_type_param_via_expr.dart.direct.expect
|
| diff --git a/pkg/front_end/testcases/inference/unsafe_block_closure_inference_function_call_implicit_type_param_via_expr.dart.direct.expect b/pkg/front_end/testcases/inference/unsafe_block_closure_inference_function_call_implicit_type_param_via_expr.dart.direct.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5d7db448ebac01e95816921c3e64b296567c9aa4
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/unsafe_block_closure_inference_function_call_implicit_type_param_via_expr.dart.direct.expect
|
| @@ -0,0 +1,11 @@
|
| +library test;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +
|
| +static method main() → dynamic {
|
| + dynamic v = self::f.call(() → dynamic {
|
| + return 1;
|
| + });
|
| +}
|
| +static method f<T extends core::Object>(() → self::f::T g) → core::List<self::f::T>
|
| + return <self::f::T>[g.call()];
|
|
|