blob: 47560f1a825ac9a39b2f47de66e7e7a6b0405107 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 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;
/**
* Tests invalid @noreference tags on nested inner classes
* @noreference
*/
public class test1 {
/**
* @noreference
*/
class inner {
}
/**
* @noreference
*/
private class inner2 {
}
class inner3 {
}
}
class outer {
/**
* @noreference
*/
class inner {
}
}