| Index: pkg/front_end/testcases/inference/generic_methods_infer_generic_function_parameter_type2.dart.strong.expect
|
| diff --git a/pkg/front_end/testcases/inference/generic_methods_infer_generic_function_parameter_type2.dart.strong.expect b/pkg/front_end/testcases/inference/generic_methods_infer_generic_function_parameter_type2.dart.strong.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5e0a79e3e6a2932b533ded6b1a0839b71cf5689c
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/generic_methods_infer_generic_function_parameter_type2.dart.strong.expect
|
| @@ -0,0 +1,18 @@
|
| +library test;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +
|
| +class C<T extends core::Object> extends self::D<self::C::T> {
|
| + constructor •() → void
|
| + : super self::D::•()
|
| + ;
|
| + method f(dynamic g) → dynamic
|
| + return null;
|
| +}
|
| +abstract class D<T extends core::Object> extends core::Object {
|
| + constructor •() → void
|
| + : super core::Object::•()
|
| + ;
|
| + abstract method f(() → core::List<dynamic> g) → void;
|
| +}
|
| +static method main() → dynamic {}
|
|
|