Files
third_party_mesa3d/tests/parameters-03.glsl
2010-03-23 11:57:24 -07:00

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