Files
kotlin/compiler/testData/loadJava/compiledJavaAndKotlin/MixedPackage.txt
Alexander Udalov 3a8ad45dec Append newline to EOF for .txt test data files
Reverts and fixes 102f0d3
2014-10-21 03:18:27 +04:00

32 lines
757 B
Plaintext

package test
public /*synthesized*/ fun SamInterface(/*0*/ function: () -> kotlin.Unit): test.SamInterface
public fun topLevelFunction(): kotlin.Unit
public open class JavaClass {
public constructor JavaClass()
public open fun instanceMethod(): kotlin.Unit
// Static members
public open fun staticMethod(): kotlin.Unit
}
public final class KotlinClass {
public constructor KotlinClass()
}
public trait SamInterface {
public abstract fun instanceMethod(): kotlin.Unit
}
package test.sub {
public open class JavaClassInSubpackage {
public constructor JavaClassInSubpackage()
public open fun instanceMethod(): kotlin.Unit
// Static members
public open fun staticMethod(): kotlin.Unit
}
}