Files
kotlin-fork/analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/compoundAssignmentExceptionCustom.kt
T
2022-10-05 15:06:52 +00:00

11 lines
129 B
Kotlin
Vendored

class C {
operator fun remAssign(other: C) {
}
}
fun test(): C {
var n = C()
<expr>n %= n</expr>
return n
}