Files
kotlin-fork/idea/testData/intentions/declarations/convertMemberToExtension/varWithGetter.kt
T

9 lines
142 B
Kotlin
Vendored

// ERROR: Property must be initialized
// WITH_RUNTIME
// SKIP_ERRORS_AFTER
class Owner {
var <caret>p: Int
get() { return 1 }
}