gmqcc/testsuite/invalid-types/call1.qc

6 lines
89 B
C++

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