]> git.xonotic.org Git - xonotic/gmqcc.git/blob - testsuite/invalid-types/op.qc
Fixing some indentation
[xonotic/gmqcc.git] / testsuite / invalid-types / op.qc
1 void() main = {
2         local float x, y;
3         local entity e;
4         x = y + e;
5 };