Files
kotlin-fork/idea/testData/refactoring/introduceVariable/thisAsCallee.kt
T
Alexey Sedunov 1d9bafe196 PSI Unifier: Fix matching of this-expressions
#KT-8293 Fixed
2016-01-14 13:55:10 +03:00

6 lines
137 B
Kotlin
Vendored

fun (String.() -> String).foo(x : String) {
x.<selection>this</selection>()
x.this@foo()
val t = this
val tt = this@foo
}