Files
kotlin-fork/idea/testData/inspectionsLocal/functionWithLambdaExpressionBody/wrapRun/kt32580.kt
T

7 lines
146 B
Kotlin
Vendored

// FIX: Convert to run { ... }
// WITH_RUNTIME
class C {
fun f4() = {<caret>
"single-expression function which returns lambda"
}
}