blob: 7ec30f80cc69860e4903186ded23ec7629a9c9d3 [file] [log] [blame]
/* 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;
}