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

12 lines
158 B
Kotlin
Vendored

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