gmqcc/testsuite/invalid-types/call2.qc

6 lines
90 B
C++

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