// RUNTIME_WITH_FULL_JDK import java.util.Collections fun test() { val mutableList = mutableListOf(1, 2) Collections.sort(mutableList, { a, b -> a.compareTo(b) }) }