blob: 98a31e78b514b1984128eaed97f2f2b630dcf025 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.jdi.tests.program;
/**
* Test class with a static object array
*/
public class RefClass {
/**
* Array of two other Ref classes
*/
public static Object[] test = new Object[] {
new RefClass1(), new RefClass2()};
}