Files
kotlin-fork/compiler/testData/codegen/box/operatorConventions/kt45022.kt
T
2021-02-18 20:24:16 +03:00

9 lines
108 B
Kotlin
Vendored

fun box(): String {
X += 1
return "OK"
}
object X {
operator fun plusAssign(any: Any) = Unit
}