19 lines
228 B
Plaintext
Raw Normal View History

2023-10-23 16:44:12 +02:00
import java.lang.Integer;
class Other {
static field = 20;
}
2023-10-23 16:44:12 +02:00
public class Static {
static i = 20;
static {
var x = 30;
i = x;
}
2024-03-14 13:50:56 +01:00
public static m() {
return i + Other.field;
2023-10-23 16:44:12 +02:00
}
}