Files
kotlin/compiler/testData/loadJava/kotlinAgainstCompiledJavaWithKotlin/javaRefersToKotlin.txt
Alexander Udalov a79398fa00 Don't load Object as a supertype for Java classes
#KT-4890 In Progress
 #KT-5002 Fixed
2014-07-25 21:19:37 +04:00

15 lines
301 B
Plaintext

package test
public /*synthesized*/ fun J(/*0*/ function: (test.K?) -> kotlin.Unit): test.J
public trait J {
public abstract fun foo(/*0*/ p0: test.K?): kotlin.Unit
}
internal trait K {
}
internal trait K1 : test.J {
public abstract override /*1*/ fun foo(/*0*/ k: test.K?): kotlin.Unit
}