Files
kotlin-fork/idea/testData/inspectionsLocal/redundantCompanionReference/inEnum.kt
T

14 lines
167 B
Kotlin
Vendored

enum class E {
E1;
fun test() {
bar(<caret>Companion.foo)
}
fun bar(s: String) {}
companion object {
const val foo = ""
}
}