blob: c1239ed03b6b95a2e7b868dc8d1443cc536c640c [file]
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.<!OPERATOR_MODIFIER_REQUIRED!>xx<!>()
}