| Index: pkg/front_end/testcases/inference/instantiate_to_bounds_generic2_no_bound.dart.direct.expect
|
| diff --git a/pkg/front_end/testcases/inference/instantiate_to_bounds_generic2_no_bound.dart.direct.expect b/pkg/front_end/testcases/inference/instantiate_to_bounds_generic2_no_bound.dart.direct.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6be8e0bd13ad8e2521038cd23679f242e53e32c4
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/instantiate_to_bounds_generic2_no_bound.dart.direct.expect
|
| @@ -0,0 +1,18 @@
|
| +library test;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +
|
| +class A<T extends core::Object> extends core::Object {
|
| + default constructor •() → void
|
| + : super core::Object::•()
|
| + ;
|
| +}
|
| +class B<T extends self::A<dynamic>> extends core::Object {
|
| + default constructor •() → void
|
| + : super core::Object::•()
|
| + ;
|
| +}
|
| +static field self::B<dynamic> v = null;
|
| +static method main() → dynamic {
|
| + self::v;
|
| +}
|
|
|