blob: f279fcec4d67785fc1465be47869f2abd8a02ca7 [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!" as{TypeError} invalid-type;
}
static method main() dynamic {
core::String s = new self::C::•<dynamic>().{self::C::method}() as{TypeError} core::String;
core::print(s);
}