diff --git a/libraries/stdlib/jvm/runtime/kotlin/Metadata.kt b/libraries/stdlib/jvm/runtime/kotlin/Metadata.kt index bc2e895ac60..668ab1197e7 100644 --- a/libraries/stdlib/jvm/runtime/kotlin/Metadata.kt +++ b/libraries/stdlib/jvm/runtime/kotlin/Metadata.kt @@ -27,20 +27,20 @@ internal annotation class Metadata( /** * The version of the metadata provided in the arguments of this annotation. */ - val mv: IntArray = intArrayOf(), + val mv: IntArray = [], /** * The version of the bytecode interface (naming conventions, signatures) of the class file annotated with this annotation. */ - val bv: IntArray = intArrayOf(), + val bv: IntArray = [], /** * Metadata in a custom format. The format may be different (or even absent) for different kinds. */ - val d1: Array = arrayOf(), + val d1: Array = [], /** * An addition to [d1]: array of strings which occur in metadata, written in plain text so that strings already present * in the constant pool are reused. These strings may be then indexed in the metadata by an integer index in this array. */ - val d2: Array = arrayOf(), + val d2: Array = [], /** * An extra string. For a multi-file part class, internal name of the facade class. */