blob: 53339a40712dbfc13e95e3d9a3b9c935fc8a5122 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class A extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
}
class B extends self::A {
synthetic constructor •() void
: super self::A::•()
;
}
class Foo<T extends self::A = self::A> extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
}
static method main() void {
self::Foo<self::B> foo = new self::Foo::•<self::B>();
}