Files
kotlin/idea/testData/codeInsight/outOfBlock/InClassPropertyAccessor.kt
Nikolay Krasko 184d3fb16e - Tests for OUT_OF_CODE_BLOCK_MODIFICATION behaviour
- Enable behaviour for property accessors
2012-06-05 17:54:22 +04:00

9 lines
135 B
Kotlin
Vendored

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