Files
kotlin/compiler/testData/loadJava/kotlinSignature/error/ExtraUpperBound.java

11 lines
276 B
Java

package test;
import jet.runtime.typeinfo.KotlinSignature;
public class ExtraUpperBound {
@KotlinSignature("fun <A : Runnable> foo() : String where A : Cloneable")
public <A extends Runnable> String foo() {
throw new UnsupportedOperationException();
}
}