blob: 4da3023e2342e0be7380416244c633b48731225a [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> extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
}
static method main() void {
self::Foo<self::B> foo = new self::Foo::•<self::B>();
}