Files
kotlin-fork/idea/testData/refactoring/introduceVariable/ThisReference.kt
T
2015-09-03 22:06:15 +03:00

9 lines
99 B
Kotlin
Vendored

class A {
fun bar() {
}
fun foo() {
<selection>this</selection>.foo()
}
}