11 lines
127 B
Kotlin
Vendored
11 lines
127 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
class R<T>
|
|
|
|
fun <T> f(): R<T> = R<T>()
|
|
|
|
operator fun Int.plusAssign(y: R<Int>) {}
|
|
|
|
fun box() {
|
|
1 += f()
|
|
}
|