Files
kotlin-fork/idea/testData/inspectionsLocal/moveSuspiciousCallableReferenceIntoParentheses/expectedFunction.kt
T

8 lines
142 B
Kotlin
Vendored

// WITH_RUNTIME
// PROBLEM: none
fun foo(arg: Int) = arg.toString()
fun bar(f: () -> (Int) -> String) {}
val someFun = bar { <caret>::foo }