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