538a746df9
#KT-17119 Fixed
13 lines
425 B
Kotlin
Vendored
13 lines
425 B
Kotlin
Vendored
// "Convert to run { ... }" "false"
|
|
// TOOL: org.jetbrains.kotlin.idea.inspections.FunctionWithLambdaExpressionBodyInspection
|
|
// ACTION: Convert property getter to initializer
|
|
// ACTION: Convert to block body
|
|
// ACTION: Specify explicit lambda signature
|
|
// ACTION: Specify explicit lambda signature
|
|
// ACTION: Specify type explicitly
|
|
// ACTION: Specify type explicitly
|
|
val test get() = <caret>{ "" }
|
|
|
|
fun foo() {
|
|
test()
|
|
} |