Files
kotlin-fork/idea/testData/refactoring/inline/inlineVariableOrProperty/property/ObjectProperty.kt
T
2016-07-19 15:42:15 +03:00

7 lines
69 B
Kotlin
Vendored

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