JavaTXCompilerInJavaTX/app/resources/bytecode/javFiles/RecursiveMeth.jav

5 lines
81 B
Plaintext
Raw Permalink Normal View History

2023-01-10 13:22:05 +00:00
public class RecursiveMeth{
public Integer test(){
return this.test();
}
}