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