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

8 lines
114 B
Plaintext
Vendored

fun bar() {
foo { "one" } () { "two" }
}
fun foo(a: () -> String): (() -> String) -> Unit {
return { }
}