19 lines
228 B
Plaintext
Raw Normal View History

2024-05-02 23:04:07 +02:00
import java.lang.Integer;
class Other {
static field = 20;
}
public class Static {
static i = 20;
static {
var x = 30;
i = x;
}
public static m() {
return i + Other.field;
}
}