blob: 1b6c30499962ac88ee13346ae562f3d43cb0a523 [file] [log] [blame]
// @dart = 2.9
library test;
class C {
final x = _x;
static int get _x => null;
}
main() {}