JavaCompilerCore/notizen/stan/stackmaptable/StackMapTest3.java

15 lines
173 B
Java
Raw Normal View History

2016-01-12 12:32:16 +00:00
class StackMapTest3{
void methode(){
Integer i = 1;
while(System.out == null){
i+=1;
}
System.out.println(i);
StackMapTest3 o = new StackMapTest3();
while(i<0){
i++;
}
}
}