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