Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
classObjectInTrait.kt
blob: 9071a67c69925b8a4c9b4e3811ac88fc1fd96443 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
// 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
}