mesa/tests/parameters-03.txt
2010-02-22 13:19:34 -08:00

9 lines
144 B
Text

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