blob: 366ee21f0a24c426a70dbc5fac23be028d2fc990 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class C<T extends core::Object> extends core::Object {
final field self::C::T t;
const constructor •(self::C::T t) void
: self::C::t = t, super core::Object::•()
;
}
static method main() dynamic {
self::C<core::int> x = const self::C::•<core::int>(42);
}