b8ebc087e2
Added "Unused return value of a function with lambda expression body" inspection with quickfix "Remove '=' token from function declaration" #KT-10393 Fixed
9 lines
104 B
Kotlin
Vendored
9 lines
104 B
Kotlin
Vendored
// "Remove '=' token from function declaration" "true"
|
|
|
|
fun foo() {
|
|
<caret>bar()
|
|
}
|
|
|
|
fun bar() = {
|
|
|
|
} |