blob: cb2533cd59f9b6600da9d6c4f6ab976dec78f32d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package a.b.c;
/**
* Test unsupported @nooverride tag on fields in inner / outer enums
*/
public enum test9 {
A;
/**
* @nooverride
*/
public Object f1 = null;
/**
* @nooverride
*/
protected int f2 = 0;
/**
* @nooverride
*/
private char[] f3 = {};
static enum inner {
A;
/**
* @nooverride
*/
public static Object f1 = null;
/**
* @nooverride
*/
protected int f2 = 0;
/**
* @nooverride
*/
private static char[] f3 = {};
enum inner2 {
A;
/**
* @nooverride
*/
public Object f1 = null;
/**
* @nooverride
*/
protected int f2 = 0;
/**
* @nooverride
*/
private char[] f3 = {};
}
}
}
enum outer {
A;
/**
* @nooverride
*/
public Object f1 = null;
/**
* @nooverride
*/
protected int f2 = 0;
/**
* @nooverride
*/
private static char[] f3 = {};
}