Files
kotlin-fork/idea/testData/refactoring/introduceVariable/OneExplicitReceiver.kt
T
2014-06-25 19:08:04 +04:00

9 lines
148 B
Kotlin

fun main(args: Array<String>) {
val myA = A()
println(<selection>myA.prop</selection>)
println(myA.prop)
}
class A {
val prop = 1
}