blob: 3be7ccccb9f1d22b1e3c729bbaf162004de9d449 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
static get x() dynamic
return 42;
static set x(dynamic val) void {}
static method main() dynamic {
core::print(self::x);
core::print(self::x = 87);
}