Files
kotlin-fork/idea/testData/intentions/moveLambdaOutsideParentheses/inapplicableAlreadyHasFunctionLiteral.kt
T
2015-05-27 16:15:44 +03:00

7 lines
115 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun foo() {
bar(<caret>{ it }) {it}
}
fun bar(p1: (Int) -> Int, p2: (Int) -> Int) { }