JavaCompilerCore/resources/bytecode/javFiles/Static.jav

10 lines
112 B
Plaintext
Raw Normal View History

2023-10-23 14:44:12 +00:00
import java.lang.Integer;
public class Static {
static i = 20;
static m() {
return i;
}
}