0
0
mirror of https://hub.spigotmc.org/stash/scm/spigot/fernflower.git synced 2024-11-23 18:16:42 +00:00
fernflower/testData/results/TestClassFields.dec

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];
}
}