mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
31 lines
667 B
Plaintext
Vendored
31 lines
667 B
Plaintext
Vendored
package test
|
|
|
|
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 interface 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
|
|
}
|
|
}
|