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

6 lines
132 B
Plaintext
Vendored

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