JavaCompilerCore/resources/bytecode/javFiles/RecursiveMeth.jav

5 lines
81 B
Plaintext
Raw Normal View History

2017-12-14 20:20:57 +00:00
public class RecursiveMeth{
2017-12-13 12:34:22 +00:00
public Integer test(){
return this.test();
}
}