blob: 344aa5f278e2884014580b59384d5ad652575b5f [file] [log] [blame]
// Formatted problems:
//
// pkg/front_end/testcases/type_variable_prefix.dart:8:3: Warning: 'T.String' can't be used as a type because 'T' doesn't refer to an import prefix.
// T.String method() => "Hello, World!";
// ^
library;
import self as self;
import "dart:core" as core;
class C<T extends core::Object = dynamic> extends core::Object {
synthetic constructor •() self::C<self::C::T>
;
method method() invalid-type
;
}
static method main() dynamic
;