21.11.2013, 19:39
pawn Код:
stock Test(a) return a; // No error
stock Test(A) return A; // No error
stock Test(b) return b; // No error
stock Test(B) return b; // Error: 010: Invalid function or declaration.
stock Test(B) return B; // Crashes the compiler.
So, is it happening only to me, or anyting related to inner design of PAWN?