Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
compiler
/
testData
/
codegen
/
boxKlib
/
simple.kt
blob: 189b568d3381063edd9edd4a7b53545e5c8630bb [
file
]
// 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
()
}