Files
kotlin-fork/idea/testData/refactoring/rename/companionObjectWithNameMatchingClass/after/usage.kt
T

8 lines
130 B
Kotlin
Vendored

fun main(args: Array<String>) {
// companion object usages
Foo.f()
val x = Foo
Foo.Bar.f()
val xx = Foo.Bar
}