b8ebc087e2
Added "Unused return value of a function with lambda expression body" inspection with quickfix "Remove '=' token from function declaration" #KT-10393 Fixed
13 lines
117 B
Kotlin
Vendored
13 lines
117 B
Kotlin
Vendored
|
|
fun foo() {
|
|
bar()
|
|
val a = bar()
|
|
if (bar() != null) {
|
|
bar()
|
|
}
|
|
bar()()
|
|
}
|
|
|
|
fun bar() = {
|
|
|
|
} |