| Index: pkg/front_end/testcases/inference/infer_generic_method_type_positional.dart.strong.expect
|
| diff --git a/pkg/front_end/testcases/inference/infer_generic_method_type_positional.dart.strong.expect b/pkg/front_end/testcases/inference/infer_generic_method_type_positional.dart.strong.expect
|
| index a072b7d487ee6467e91a3280f2f38a459fbc7f76..bab6dbed9934b51506547d4a37f8e12cb6ae76c2 100644
|
| --- a/pkg/front_end/testcases/inference/infer_generic_method_type_positional.dart.strong.expect
|
| +++ b/pkg/front_end/testcases/inference/infer_generic_method_type_positional.dart.strong.expect
|
| @@ -6,9 +6,9 @@ class C extends core::Object {
|
| constructor •() → void
|
| : super core::Object::•()
|
| ;
|
| - method m(core::int a, [dynamic b = null]) → dynamic
|
| + method m<T extends core::Object>(core::int a, [self::C::m::T b = null]) → self::C::m::T
|
| return null;
|
| }
|
| static method main() → dynamic {
|
| - core::double y = new self::C::•().{self::C::m}(1, 2.0);
|
| + core::double y = new self::C::•().{self::C::m}<core::double>(1, 2.0);
|
| }
|
|
|