blob: e1da02b66ae02814ed23417364c7d2e623c0d6ae [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package a.b.c;
/**
* Valid annotations on a functional interface with an inner functional interface
* @noimplement
* @noextend
* @noreference
*/
@FunctionalInterface
public interface test2 {
/**
* @noreference
*/
int m1();
@FunctionalInterface
interface inner {
/**
* @noreference
*/
int m1();
}
}