blob: f2eb98012599975f626376e48d383f1f431ba352 [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>();
}