Files
kotlin-fork/idea/testData/intentions/addBraces/addBracesForWhile.kt
T

7 lines
95 B
Kotlin
Vendored

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