mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-18 15:25:12 -05:00
15 lines
213 B
Plaintext
15 lines
213 B
Plaintext
|
package unit.classes;
|
||
|
|
||
|
|
||
|
public class TestClassFields {
|
||
|
|
||
|
private static int[] sizes;
|
||
|
private static String[] names = new String[]{"name1", "name2"};
|
||
|
|
||
|
|
||
|
static {
|
||
|
sizes = new int[names.length];
|
||
|
}
|
||
|
|
||
|
}
|