blob: 1f9abddc24ac1c06e5561173337b66ea82a92a6a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 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;
import org.eclipse.pde.api.tools.annotations.NoOverride;
/**
* Tests invalid @NoOverride annotation on nested inner interfaces
*/
public interface test1 {
@NoOverride
int m1();
interface inner {
@NoOverride
int m1();
}
}