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

7 lines
146 B
Plaintext
Vendored

fun (String.() -> String).foo(x : String) {
val function = this
x.function()
x.function()
val t = function
val tt = function
}