blob: 66bb424f153abe973f854d6586b7990ff67171f1 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class A<T extends core::Object> extends core::Object {
final field self::A::T x = null;
default constructor •() void
: super core::Object::•()
;
}
class B extends core::Object implements self::A<core::int> {
default constructor •() void
: super core::Object::•()
;
get x() dynamic
return 3;
}
static method foo() dynamic {
core::String y = new self::B::•().{self::B::x};
core::int z = new self::B::•().{self::B::x};
}
static method main() dynamic {
self::foo();
}