Each argument in a function declaration must consist of the type of the argument and its identifier. This error is generated if the compiler cannot find the argument type. Example:
func test(&a) ; Error! endfunc
To fix the error, specify the type of the argument:
func test(int &a) ; OK endfunc
See Also
Errors