ir_constant_visitor: Use 'union ir_constant_data' in expression handler
[mesa.git] / tests / parameters-03.glsl
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)
5 {
6 float x;
7
8 x = y;
9 }