blob: af7fe1c0da6cb8741ff6081a0a167497098d939c [file] [log] [blame]
infix fun <A, B> A.to(that: B): Pair<A, B> = Pair(this, that)
fun foo() {
val pair = 1 to <caret>
}