blob: 2b41fa06c2d2705e3b214675694945e57e69aa76 [file] [log] [blame]
// IGNORE_BACKEND: JVM_IR
// FILE: klib.kt
package fromKlib
class C {
val x = "OK"
}
fun foo(): String {
return C().x
}
// FILE: test.kt
import fromKlib.foo
fun box(): String {
return foo()
}