Files
kotlin-fork/idea/testData/inspectionsLocal/unusedLambdaExpressionBody/simple.kt
T
2017-12-28 20:31:45 +03:00

9 lines
104 B
Kotlin
Vendored

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