Files
kotlin-fork/idea/testData/refactoring/introduceVariable/NoExplicitReceivers.kt
T
2014-09-10 16:44:46 +04:00

11 lines
168 B
Kotlin
Vendored

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