JavaCompilerCore/notizen/stan/stackmaptable/StackMapTest4.java

18 lines
232 B
Java
Raw Permalink Normal View History

2016-02-18 17:28:08 +00:00
class StackMapTest4{
int test = 1;
void methode(){
Integer i = 1;
while(System.out == null){
i+=test;
}
Runnable r = ()->System.out.println("");
System.out.println(i);
StackMapTest3 o = new StackMapTest3();
while(i<0){
i++;
}
}
}