blob: 3f89b82e53a47b459c3271e58c387e85f1b1c4fb [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 @noreference tags on nested inner interfaces
* @noreference
*/
public interface test1 {
/**
* @noreference
*/
interface inner {
}
interface inner1 {
/**
* @noreference
*/
interface inner2 {
}
}
interface inner2 {
}
}
interface outer {
/**
* @noreference
*/
interface InnerNoRef4 {
}
}