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