c1c8660e55
#KT-22304 Fixed
12 lines
192 B
Kotlin
Vendored
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"
|
|
}
|
|
}
|
|
} |