Files
kotlin-fork/compiler/testData/cli/jvm/kt22304_2.kt
T
Mikhael Bogdanov c1c8660e55 Don't try to transform sam wrappers in same module
#KT-22304 Fixed
2018-03-08 11:50:08 +01:00

12 lines
202 B
Kotlin
Vendored

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