mirror of
https://github.com/moparisthebest/fernflower
synced 2025-02-21 21:21:45 -05:00
22 lines
343 B
Plaintext
22 lines
343 B
Plaintext
package pkg;
|
|
|
|
public class TestClassFields {
|
|
private static int[] sizes;
|
|
private static String[] names = new String[]{"name1", "name2"};
|
|
|
|
static {
|
|
sizes = new int[names.length];// 26
|
|
}
|
|
}
|
|
|
|
class 'pkg/TestClassFields' {
|
|
method '<clinit> ()V' {
|
|
11 7
|
|
14 7
|
|
17 7
|
|
}
|
|
}
|
|
|
|
Lines mapping:
|
|
26 <-> 8
|