blob: e3b965389d65aa4b1f19dff2a4c72833ce5089ff [file]
package java2d
class A {
fun getConst() = OK
companion object {
const val OK = "OK"
}
}
fun box(): String {
return A().getConst()
}