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;
}