19 lines
221 B
Plaintext
19 lines
221 B
Plaintext
|
import java.lang.Integer;
|
||
|
|
||
|
class Other {
|
||
|
static field = 20;
|
||
|
}
|
||
|
|
||
|
public class Static {
|
||
|
static i = 20;
|
||
|
|
||
|
static {
|
||
|
var x = 30;
|
||
|
i = x;
|
||
|
}
|
||
|
|
||
|
static m() {
|
||
|
return i + Other.field;
|
||
|
}
|
||
|
}
|