1
Fork 0
mini-java/miniJava/tests/pa3_tests/fail319.java

13 lines
226 B
Java

/*** variable declaration as solitary statement in the body of the while construct
* COMP 520
* Identification
*/
class fail19 {
public static void main(String[] args) {
int x = 0;
while (3 > 4)
int y = 2;
}
}