2a97fb17ba
Add tests for source information mapping KT-17108 source information corrupted on PSI -> IR transformation
24 lines
242 B
Kotlin
Vendored
24 lines
242 B
Kotlin
Vendored
package test
|
|
|
|
class Host {
|
|
operator fun plusAssign(x: Int) {}
|
|
|
|
fun test1() {
|
|
this += 1
|
|
}
|
|
}
|
|
|
|
fun foo() = Host()
|
|
|
|
fun Host.test2() {
|
|
this += 1
|
|
}
|
|
|
|
fun test3() {
|
|
foo() += 1
|
|
}
|
|
|
|
fun test4(a: () -> Host) {
|
|
a() += 1
|
|
}
|