• 351 2 3 23 3 8 K # 8 03 / 3 expect class System { companion object { fun currentTimeMillis(): Long } } // NG actual typealias System = java.lang.System
• 6 0 5 8 K 8 31 2 32 3 6 K # 360 2 1 /6 // OK actual class System { actual companion object { actual fun currentTimeMillis() = java.lang.System.currentTimeMillis() } }
• 7 0 5 8 K 8 31 2 32 3 K # 3 0 2 1 / // OK actual fun System.Companion.currentTimeMillis() = java.lang.System.currentTimeMillis() class System { companion object } expect fun System.Companion.currentTimeMillis(): Long