01: package org.eclipse.debug.jdi.tests.program; 02: 03: /** 04: * Test class with a static object array 05: */ 06: public class RefClass { 07: 08: /** 09: * Array of two other Ref classes 10: */ 11: public static Object[] test = new Object[] { new RefClass1(), 12: new RefClass2() }; 13: }