mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
Includes changes to decompiled text Old syntax is used in builtins and project code for now
13 lines
206 B
Kotlin
13 lines
206 B
Kotlin
// EA-38323 - Illegal field modifiers in class: classObject field in C must be static and final
|
|
|
|
trait C {
|
|
default object {
|
|
public val FOO: String = "OK"
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return C.FOO
|
|
}
|
|
|