• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/* FAIL - x is redeclared in the function body at the same scope as the
2 *        parameter
3 */
4void a(float x, float y)
5{
6	float x;
7
8	x = y;
9}
10