blob: 133eb58be6cd71f1a48fd014b998597e22b7a832 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 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 x.y.z;
import c.ClassUsageClass;
/**
*
*/
public class testA7 {
public void m1() {
class inner extends ClassUsageClass {
}
new inner();
}
public void m2() {
class inner extends ClassUsageClass {
}
new inner();
}
public void m3() {
class inner extends ClassUsageClass {
}
new inner();
}
}