JavaCompilerCore/test/bytecode/RecursiveMeth.jav
2017-12-13 13:34:22 +01:00

5 lines
76 B
Java

public class VoidMeth{
public Integer test(){
return this.test();
}
}