blob: 91a634608c88945cdf4353d9c303168b5443ccca [file] [log] [blame]
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>
: 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);
}