Files
kotlin-fork/idea/testData/intentions/moveLambdaOutsideParentheses/inapplicable2.kt
T

10 lines
128 B
Kotlin

// IS_APPLICABLE: false
fun doSomething<T>(a: T) {}
fun foo(x: Int) {
if (x == 1) <caret>{
doSomething(x)
}
}