test253
auto test253 =
q{--- test253.vx
// Forbid access to non-@static member from @static method
// @static methods
struct S {
u64 structVar = 50;
@static void useNonstatic() {
++structVar;
}
}
--- <error>
test253.vx:6:6: Error: undefined identifier `this`
};
tests passing
functionsvariables