blob: 01709322f55c2703d725d7e25167cb06f34b388c [file] [log] [blame]
class Base {
int hashCode = 42;
}
class Sub extends Base {
foo() {}
get hashCode => _hashCode ??= super.hashCode;
int _hashCode = null;
}
main() {}