Files
kotlin-fork/idea/testData/codeInsight/outOfBlock/InClassPropertyAccessor.kt
T
2019-10-30 21:41:29 +01:00

9 lines
154 B
Kotlin
Vendored

// OUT_OF_CODE_BLOCK: FALSE
class Test {
val more : Int = 0
val test : Int
get() {
<caret>
return more
}
}