mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-15 13:55:07 -05: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];
|
|
}
|
|
}
|