Using Kotlin 1.6.0 this test runs on JVM, but nati...
# kotlin-native
b
Using Kotlin 1.6.0 this test runs on JVM, but native does not sort properly:
Copy code
@Test
fun test() {
    val input = listOf("本", "日")
    val output = input.sorted()
    val expected = listOf("日", "本")
    assertEquals(expected, output)
}