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