blob: fc7c5dfccbe4a80c6582153989b7057339e35973 [file] [log] [blame]
open class Factory(p: Int)
class A {
companion object : Factory(1)
}
fun box() : String {
A
return "OK"
}