ir_to_mesa: Support texture rectangle targets
[mesa/nouveau-pmpeg.git] / src / glsl / tests / parameters-03.glsl
blob7ec30f80cc69860e4903186ded23ec7629a9c9d3
1 /* FAIL - x is redeclared in the function body at the same scope as the
2  *        parameter
3  */
4 void a(float x, float y)
6         float x;
8         x = y;