mesa/tests/parameters-03.glsl

10 lines
144 B
GLSL

/* FAIL - x is redeclared in the function body at the same scope as the
* parameter
*/
void a(float x, float y)
{
float x;
x = y;
}