mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
AbstractCompileKotlinAgainstMultifileKotlinTest is broken in this commit; will be fixed later
10 lines
79 B
Kotlin
Vendored
10 lines
79 B
Kotlin
Vendored
// FILE: 1.kt
|
|
|
|
fun box() = a.x
|
|
|
|
// FILE: 2.kt
|
|
|
|
package a
|
|
|
|
val x: String = "OK"
|