| Index: pkg/front_end/testcases/inference/unsafe_block_closure_inference_constructor_call_explicit_type_param.dart.direct.expect
|
| diff --git a/pkg/front_end/testcases/inference/unsafe_block_closure_inference_constructor_call_explicit_type_param.dart.direct.expect b/pkg/front_end/testcases/inference/unsafe_block_closure_inference_constructor_call_explicit_type_param.dart.direct.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2f5725ed7228373fe062ae3d25475255f95b7e3f
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/unsafe_block_closure_inference_constructor_call_explicit_type_param.dart.direct.expect
|
| @@ -0,0 +1,15 @@
|
| +library test;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +
|
| +class C<T extends core::Object> extends core::Object {
|
| + constructor •(() → self::C::T x) → void
|
| + : super core::Object::•()
|
| + ;
|
| +}
|
| +static field dynamic v = new self::C::•<core::int>(() → dynamic {
|
| + return 1;
|
| +});
|
| +static method main() → dynamic {
|
| + self::v;
|
| +}
|
|
|