Files
kotlin-fork/idea/testData/intentions/replaceExplicitFunctionLiteralParamWithIt/notApplicable_notFunctionLiteralParameter.kt
T
2015-04-07 13:08:53 +03:00

9 lines
140 B
Kotlin
Vendored

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