blob: 7b39f1eec3b5e849e3a6310af62055c12bcf2fc8 [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;
final field self::A::T w = null;
constructor •() void
: super core::Object::•()
;
}
class B extends core::Object implements self::A<core::int> {
constructor •() void
: super core::Object::•()
;
get x() core::int
return 3;
get w() core::int
return "hello";
}
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();
}