blob: 1def0219554abf0c7a3de506eea607ff31039c3f [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::•<dynamic>();
}