mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-10 19:35:14 -05:00
14 lines
203 B
Plaintext
14 lines
203 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];
|
|
}
|
|
}
|