Files
kotlin-fork/idea/testData/inspectionsLocal/moveLambdaOutsideParentheses/labeledLambda.kt.after
T

9 lines
104 B
Plaintext
Vendored

// IS_APPLICABLE: true
fun foo() {
bar(2) l@{ it }
}
fun bar(a: Int, b: (Int) -> Int) {
b(a)
}