gmqcc/testsuite/invalid-types/call1.qc

7 lines
89 B
C++
Raw Normal View History

void(float, string, entity) fun = #1;
void() main = {
local float x;
fun(x, x, x);
};