Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/qualifierWithCompanion.kt
T
2020-03-19 09:51:01 +03:00

19 lines
181 B
Kotlin
Vendored

package my
class A {
companion object X {
fun foo() {}
}
}
val xx = A()
fun test() {
val x = A
A.foo()
A.X.foo()
fun A.invoke() {}
my.xx()
}