Files
kotlin-fork/idea/testData/joinLines/declarationAndAssignment/longInit2.kt
T
Valentin Kipyatkov d71c481606 Moved test data
2014-10-02 18:26:06 +04:00

7 lines
101 B
Kotlin
Vendored

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