blob: b588a3e908c124344b193bf6ecd11f1e94153153 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
class C<T extends core::Object> extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
method method() invalid-type
return "Hello, World!";
}
static method main() dynamic {
core::String s = new self::C::•<dynamic>().method();
core::print(s);
}