blob: 617c593d7bdc62977dbc5eab4e48293a22c606fe [file] [log] [blame]
// WITH_RUNTIME
fun main(args: Array<String>) {
with(A()) {
println(<selection>prop</selection>)
println(prop)
}
}
class A {
val prop = 1
}