blob: 9968e965447df9ebf77c7d31ab34f8e62c333d10 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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 valid tags on nested inner interfaces
* @noimplement
*/
public interface test4 {
/**
* @noimplement
*/
interface inner {
}
interface inner1 {
/**
* @noimplement
*/
interface inner2 {
}
}
interface inner2 {
}
}
interface outer {
/**
* @noimplement
*/
interface inner {
}
}