Files
kotlin-fork/idea/testData/refactoring/extractFunction/parameters/misc/thisInObject.kt
T
2014-11-26 13:07:27 +03:00

9 lines
110 B
Kotlin
Vendored

package p
// SIBLING:
object O {
val a = 1
fun test() {
<selection>this.a</selection>
}
}