blob: 656ab38bc3c8e07d5baffc4c9fcd01b51f0786e3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 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 a.b.c;
/**
* Tests invalid @noinstantiate tags on nested inner enums
* @noinstantiate
*/
public enum test7 {
A;
/**
* @noinstantiate
*/
enum inner {
}
enum inner1 {
A;
/**
* @noinstantiate
*/
enum inner2 {
}
}
enum inner2 {
}
}
enum outer {
A;
/**
* @noinstantiate
*/
enum inner {
}
}