Files
kotlin-fork/idea/testData/inspectionsLocal/redundantEmptyInitializerBlock/hasComment.kt
T
Toshiaki Kameyama b650c7ab00 Add "Redundant empty initializer block" inspection
^KT-5008 Fixed
2019-06-14 12:27:21 +03:00

9 lines
107 B
Kotlin
Vendored

class Test {
// init comment1
<caret>init {
// init comment2
}
fun foo() {
}
}