6c439ae85a
#KT-34744
16 lines
518 B
Kotlin
Vendored
16 lines
518 B
Kotlin
Vendored
// "Remove braces" "false"
|
|
// TOOL: org.jetbrains.kotlin.idea.inspections.FunctionWithLambdaExpressionBodyInspection
|
|
// ACTION: Convert property getter to initializer
|
|
// ACTION: Convert to block body
|
|
// ACTION: Convert to run { ... }
|
|
// ACTION: Enable a trailing comma by default in the formatter
|
|
// ACTION: Specify explicit lambda signature
|
|
// ACTION: Specify explicit lambda signature
|
|
// ACTION: Specify type explicitly
|
|
// ACTION: Specify type explicitly
|
|
val test get() = <caret>{
|
|
foo()
|
|
foo()
|
|
}
|
|
|
|
fun foo() {} |