// PROBLEM: none infix fun Int.lt(b: Int): Boolean = this < b fun test(n: Int) { !(1 lt 2) }