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