8 lines
163 B
Kotlin
Vendored
8 lines
163 B
Kotlin
Vendored
// FILE: 1.kt
|
|
// File names are important! This file should come before the other one
|
|
// in a lexicographic order.
|
|
const val x = "OK"
|
|
|
|
// FILE: 2.kt
|
|
fun box() = x
|