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

10 lines
128 B
Kotlin
Vendored

// PROBLEM: none
class A {
companion object foo {
val foo = 1
}
fun test() {
<caret>foo.foo
}
}