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