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