Error 34. The identifier is already in use. You attempted to define the function that has the same identifier as global variable.

Occurs when function definition uses the same identifier as global variable defined earlier in the formula.

Test = 5; // global variable

function Test( x ) // incorrect, 'Test' identifier is already used for global variable
{
 return 2 * x;
}