Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/genericAssignmentOperator.kt
T

9 lines
132 B
Kotlin
Vendored

class R<T>
fun <T> f(): R<T> = R<T>()
operator fun Int.plusAssign(<!UNUSED_PARAMETER!>y<!>: R<Int>) {}
fun box() {
1 += f()
}