mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Effectively drop publicField and introduce JvmField (which has the same effect for now) Implement frontend checks for @JvmField Replace publicField -> JvmField in test data
8 lines
108 B
Kotlin
Vendored
8 lines
108 B
Kotlin
Vendored
// C
|
|
|
|
class C {
|
|
companion object {
|
|
@[kotlin.jvm.JvmField] private val foo: String = "A"
|
|
}
|
|
}
|