package p;

public class ArrayInitializer {
	String[] test = { "Test", "Test2" };
	int[] val = new int[] { 1, 2, 3, 34 };
}