blob: 2ed847f19bea9a0d77ee0d28d0183c6bc4d626d6 [file]
// FILE: DeclSite.kt
infix fun Int.customPlus(other: Int) = this + other
// FILE: UseSite.kt
fun test() {
0 <caret>customPlus 0
}