Files
kotlin-fork/compiler/testData/cli/jvm/kt22304_3.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
192 B
Kotlin
Vendored

package ttest //package name should be more than imported one
import test.*
fun foo(): String {
return "O".switchMapOnce {
"K".switchMapOnce {
"OK"
}
}
}