blob: e34f5622a3e13933fe8ebaedcb6b41c26ed48d1d [file] [log] [blame]
// EA-38323 - Illegal field modifiers in class: classObject field in C must be static and final
interface C {
companion object {
public val FOO: String = "OK"
}
}
fun box(): String {
return C.FOO
}