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