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

14 lines
150 B
Plaintext
Vendored

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