JavaTXCompilerInJavaTXNoMaven/resources/bytecode/javFiles/RecursiveMeth.jav

5 lines
81 B
Plaintext
Raw Normal View History

2024-05-02 21:04:07 +00:00
public class RecursiveMeth{
public Integer test(){
return this.test();
}
}