Files
kotlin-fork/idea/testData/intentions/replaceExplicitFunctionLiteralParamWithIt/notApplicable_notFunctionLiteralParameter.kt
T

9 lines
148 B
Kotlin
Vendored

// IS_APPLICABLE: false
private val foo = { x: Int ->
class Inner() {
fun temp(<caret>y: Int) : Int { return x + y }
}
Inner()
}