JavaCompilerCore/resources/bytecode/javFiles/RecursiveMeth.jav

5 lines
81 B
Java

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