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