blob: 7d504d1a47b28ff83350e94655a1a5299f2da91e [file]
/*******************************************************************************
* Copyright (c) 2013 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;
import org.eclipse.pde.api.tools.annotations.NoExtend;
/**
* Test unsupported @NoExtend tag on fields in outer / inner annotation
*/
public @interface test1 {
@interface inner {
/**
*/
@NoExtend
public int f2 = 0;
@interface inner2 {
/**
*/
@NoExtend
public char[] f3 = {};
}
}
}
@interface outer {
/**
*/
@NoExtend
public static Object f1 = null;
}