blob: 4a1fe58c7a37b057def9c4f3e6b9c84b807fff13 [file] [log] [blame]
public class AssignTest {
public static void main(String[] args) {
int foo = 0;
while (true) {
if (foo != 12) System.out.println("Test");
if (Math.random() > 0.5) foo = 22;
}
}
}