blob: bac925c0995095554cb75afcdc4268a6841d256d [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.*;
/**
* Invalid annotations on a functional interface with an inner functional interface
*/
@FunctionalInterface
public interface test2 {
@NoOverride
int m1();
@FunctionalInterface
interface inner {
@NoOverride
int m1();
}
}