362ee126d1
In 1.3, companion members in interface can be annotated with JvmField, so fix replacing JvmField with const is no more actual. This fixes testCompanionInInterface.
8 lines
181 B
Kotlin
Vendored
8 lines
181 B
Kotlin
Vendored
// "Replace '@JvmField' with 'const'" "true"
|
|
// WITH_RUNTIME
|
|
// LANGUAGE_VERSION: 1.2
|
|
interface IFace {
|
|
companion object {
|
|
<caret>@JvmField val a = "Lorem ipsum"
|
|
}
|
|
} |