cd44bc3fb0
#KT-5319 Fixed
9 lines
148 B
Kotlin
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
|
|
} |