mirror of
https://github.com/moparisthebest/fernflower
synced 2024-10-31 23:45:08 -04:00
11 lines
200 B
Plaintext
11 lines
200 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];
|
|
}
|
|
}
|