Files
kotlin-fork/compiler/testData/cli/jvm/kt22304_2.kt
T

12 lines
183 B
Kotlin
Vendored

package beforeTest //package name should be less than imported one
import test.*
fun main() {
"O".switchMapOnce {
"K".switchMapOnce {
"OK"
}
}
}