fun test_1() { val comp = Comparator { x, y -> 1 } } fun test_3(comparator: java.util.Comparator) { comparator.compare(1, 2) } fun test_4(comparator: Comparator) { comparator.compare(1, 2) }