You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
438 B
28 lines
438 B
9 years ago
|
package pkg;
|
||
|
|
||
|
import pkg.TestClassFields;
|
||
|
|
||
|
public class TestMutableStaticOtherClass {
|
||
|
private static final int SIZE;
|
||
|
|
||
|
static {
|
||
|
TestClassFields.staticMutable = 3;// 12
|
||
|
SIZE = TestClassFields.staticMutable;// 13
|
||
|
}// 14
|
||
|
}
|
||
|
|
||
|
class 'pkg/TestMutableStaticOtherClass' {
|
||
|
method '<clinit> ()V' {
|
||
|
0 8
|
||
|
1 8
|
||
|
4 9
|
||
|
7 9
|
||
|
a 10
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Lines mapping:
|
||
|
12 <-> 9
|
||
|
13 <-> 10
|
||
|
14 <-> 11
|