blob: 4427d9c87325841558b7ad1be38ec8d4b5e77a8e [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* = self::A*> 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::•<self::B*>();
}