blob: 0b4903a727001f72177bc5042aa26b2823702cc0 [file] [log] [blame]
package a
<selection>interface T
class A(i: Int) {}
val c = 0
fun g(a: A) {}
fun A.ext()
object O1 {
fun f() {
}
}
object O2 {
}
class ClassObject {
companion object {
}
}
fun f(a: A, t: T) {
g(A(c).ext())
O1.f()
O2
ClassObject
}</selection>