184d3fb16e
- Enable behaviour for property accessors
9 lines
135 B
Kotlin
9 lines
135 B
Kotlin
// FALSE
|
|
class Test {
|
|
val more : Int = 0
|
|
val test : Int
|
|
get() {
|
|
<caret>
|
|
return more
|
|
}
|
|
} |