Files
kotlin-fork/idea/testData/codeInsight/codeTransformations/declarations/join/longInit2.kt
T
2013-06-13 20:19:34 +04:00

7 lines
101 B
Kotlin

fun foo(n: Int) {
val x: String<caret>
x = if (n > 0)
"> 0"
else
"<= 0"
}