Files
kotlin-fork/idea/testData/refactoring/inline/property/ObjectProperty.kt
T
2013-07-24 16:03:01 +04:00

7 lines
69 B
Kotlin

object Obj {
val p = 239
}
fun f() {
println(Obj.<caret>p)
}