Index: pkg/front_end/testcases/inference/generic_methods_infer_generic_method_type.dart.strong.expect |
diff --git a/pkg/front_end/testcases/inference/generic_methods_infer_generic_method_type.dart.strong.expect b/pkg/front_end/testcases/inference/generic_methods_infer_generic_method_type.dart.strong.expect |
index c7927d4f294aea02db4a90319bbe0e34115db365..5fa85f2de668237df981c45287f9927143467fa4 100644 |
--- a/pkg/front_end/testcases/inference/generic_methods_infer_generic_method_type.dart.strong.expect |
+++ b/pkg/front_end/testcases/inference/generic_methods_infer_generic_method_type.dart.strong.expect |
@@ -6,17 +6,17 @@ class C extends core::Object { |
constructor •() → void |
: super core::Object::•() |
; |
- method m(dynamic x) → dynamic |
+ method m<T extends core::Object>(self::C::m::T x) → self::C::m::T |
return x; |
} |
class D extends self::C { |
constructor •() → void |
: super self::C::•() |
; |
- method m(dynamic x) → dynamic |
+ method m<S extends core::Object>(dynamic x) → dynamic |
return x; |
} |
static method main() → dynamic { |
- core::int y = new self::D::•().{self::D::m}(42); |
+ core::int y = new self::D::•().{self::D::m}<core::int>(42); |
core::print(y); |
} |