LLJS
LLJS copied to clipboard
Cannot increment struct field in member function
The compiler gives "cannot use . operator on pointer type"
struct Foo {
int x;
function foo() { this->x++; }
};