Files
kotlin-fork/idea/testData/intentions/removeBraces/whileWithTwoStatements.kt
T
2014-07-10 15:05:18 +04:00

10 lines
160 B
Kotlin

// IS_APPLICABLE: false
fun doSomething<T>(a: T) {}
fun foo() {
while (true) {
doSomething("test")
doSomething("test2")
<caret>}
}