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

6 lines
98 B
Kotlin

// ERROR: Property must be initialized or be abstract
class Owner<T> {
val <R> <caret>p: R
}