blob: d172163bfb568cee6e61d98492e7e0c4a06912de [file] [log] [blame]
/*******************************************************************************
* Copyright (c) Apr 2, 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 i;
import org.eclipse.pde.api.tools.annotations.NoOverride;
public interface INoOverrideInterface {
@NoOverride
default void m1() {
}
}