summaryrefslogtreecommitdiff
path: root/src/glsl/tests/parameters-03.glsl
blob: 7ec30f80cc69860e4903186ded23ec7629a9c9d3 (plain)
1
2
3
4
5
6
7
8
9
/* 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;
}