Retain "is moved from interface companion" property flag in kotlinx-metadata-jvm

#KT-31338 Fixed
This commit is contained in:
Alexander Udalov
2019-05-07 12:32:33 +02:00
parent cfa3509860
commit 2a3786e3f8
11 changed files with 120 additions and 11 deletions
@@ -0,0 +1,11 @@
package test
interface I {
companion object {
@JvmField
val x = "x"
@JvmField
val y = "y"
}
}