package Jet86
class A {
companion object {
val x = 1
}
companion object Another { // error
val x = 1
}
}
class B() {
val x = 12
}
object b {
companion object {
val x = 1
}
// error
}
val a = A.x
val c = B.x
val d = b.x
val s = System // error
fun test() {
System.out.println()
java.lang.System.out.println()
}