| Index: pkg/front_end/testcases/inference/generic_methods_correctly_recognize_generic_upper_bound.dart.strong.expect
|
| diff --git a/pkg/front_end/testcases/inference/generic_methods_correctly_recognize_generic_upper_bound.dart.strong.expect b/pkg/front_end/testcases/inference/generic_methods_correctly_recognize_generic_upper_bound.dart.strong.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..72c646a47054cc0bb3e94ab8bb576e3f95196f75
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/generic_methods_correctly_recognize_generic_upper_bound.dart.strong.expect
|
| @@ -0,0 +1,14 @@
|
| +library test;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +
|
| +class Foo<T extends core::Pattern> extends core::Object {
|
| + constructor •() → void
|
| + : super core::Object::•()
|
| + ;
|
| + method method(self::Foo::T u) → self::Foo::T
|
| + return u;
|
| +}
|
| +static method main() → dynamic {
|
| + new self::Foo::•<core::String>().method(42);
|
| +}
|
|
|