/** * Test of the cost to declare a large array */ public class declareLargeArray7 { public static void main(String[] args) { int[] anArray = new int[700000000]; System.out.println("Hello, world!"); } }