11 lines
168 B
Kotlin
Vendored
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
|
|
} |