bb54825fac
Classes from the root package cannot be referenced from a non-root package
16 lines
378 B
Java
Vendored
16 lines
378 B
Java
Vendored
package library
|
|
|
|
import jet.runtime.typeinfo.KotlinSignature;
|
|
|
|
public class ClassWithWrongKotlinSignatures {
|
|
@KotlinSignature("fun bar() : String")
|
|
public static String foo() {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
@KotlinSignature("fun foo() : String")
|
|
public static String bar() {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|