blob: a2924afb15b144fd39f54be11e3831944b32a939 [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;
/**
* Test unsupported @noextend tag on methods in outer / inner annotations
*/
public @interface test1 {
@interface inner {
/**
* @noextend
* @return
*/
public int m1();
/**
* @noextend
* @return
*/
public abstract char m2();
@interface inner2 {
/**
* @noextend
* @return
*/
public int m1();
/**
* @noextend
* @return
*/
public abstract char m2();
}
}
}
@interface outer {
/**
* @noextend
* @return
*/
public int m1();
/**
* @noextend
* @return
*/
public abstract char m2();
}