1 import java.util.ArrayList ;2 3 public class ImportTests {4 public static void main (String [] args) {5 ImportTests t = new ImportTests();6 t.run();7 }8 private void run() {9 ArrayList al = new ArrayList (); 10 }11 }12