Files
kotlin-fork/idea/testData/quickfix/removeEqTokenFromFunctionDeclaration/simple.kt
T
Vyacheslav Gerasimov b8ebc087e2 Add inspection for calls of function with lambda expression body
Added "Unused return value of a function with lambda expression body" inspection with quickfix "Remove '=' token from function declaration"

#KT-10393 Fixed
2017-03-15 00:22:31 +03:00

9 lines
104 B
Kotlin
Vendored

// "Remove '=' token from function declaration" "true"
fun foo() {
<caret>bar()
}
fun bar() = {
}