Files
kotlin-fork/idea/testData/inspectionsLocal/controlFlowWithEmptyBody/also/anonymousFunction.kt
T
Toshiaki Kameyama 65f06454be Add "Control flow with empty body" inspection
#KT-30970 Fixed
2019-05-29 18:04:24 +07:00

9 lines
120 B
Kotlin
Vendored

// PROBLEM: 'also' has empty body
// FIX: none
// WITH_RUNTIME
fun test() {
42.<caret>also(fun(it: Int) {
})
}