blob: 64fefafe2685085d84e1a294ad663a1cabc65bd9 [file] [log] [blame]
// Errors:
//
// pkg/front_end/testcases/regress/issue_31190.dart:1: Error: Can't use type arguments with type variable 'T'.
// Try removing the type arguments.
//
// pkg/front_end/testcases/regress/issue_31190.dart:6:5: Error: 'U' isn't a type.
// T<U> v;
// ^
//
// pkg/front_end/testcases/regress/issue_31190.dart:6:3: Error: 'T' expects 0 type arguments.
// T<U> v;
// ^
library;
import self as self;
import "dart:core" as core;
class Typed<T extends core::Object = dynamic> extends core::Object {
generic-covariant-impl field self::Typed::T v = null;
synthetic constructor •() void
: super core::Object::•()
;
}
static method main() dynamic {}