75646f97a4
Fields having const attribute in companion objects are observable in Java and should be copied to outer interfaces.
9 lines
98 B
Kotlin
Vendored
9 lines
98 B
Kotlin
Vendored
package test
|
|
|
|
interface Test {
|
|
|
|
companion object {
|
|
public const val valProp: Int = 10
|
|
}
|
|
|
|
} |