11 lines
162 B
Kotlin
Vendored
11 lines
162 B
Kotlin
Vendored
// PSI_ELEMENT: org.jetbrains.kotlin.psi.KtProperty
|
|
// OPTIONS: usages
|
|
class C
|
|
|
|
fun C.plusAssign(p: Int) = this
|
|
|
|
fun foo() {
|
|
val <caret>c = C()
|
|
c += 10
|
|
}
|