| Index: pkg/front_end/testcases/inference/generic_methods_downwards_inference_affects_arguments.dart.strong.expect
|
| diff --git a/pkg/front_end/testcases/inference/generic_methods_downwards_inference_affects_arguments.dart.strong.expect b/pkg/front_end/testcases/inference/generic_methods_downwards_inference_affects_arguments.dart.strong.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3b6975413259322bccde0531801a2329679f0f81
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/generic_methods_downwards_inference_affects_arguments.dart.strong.expect
|
| @@ -0,0 +1,10 @@
|
| +library test;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +
|
| +static method f<T extends core::Object>(core::List<self::f::T> s) → self::f::T
|
| + return null;
|
| +static method main() → dynamic {
|
| + core::String x = self::f<core::String>(<core::String>["hi"]);
|
| + core::String y = self::f<core::String>(<core::String>[42]);
|
| +}
|
|
|