1 package test;2 3 public class ReadUseNewArrayIndex {4 5 public void test() {6 int i = 0;7 String [] args = new String [i];8 }9 10 }11