Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
123456789 |
- /* 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;
- }
|