Duplicate function declaration

A function with the same name has already been declared. Each function must have a unique name to identify it. Example:

func test()
endfunc

func test()   ; Error: duplicate declaration!
endfunc

See Also
Errors