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

7 lines
171 B
Kotlin
Vendored

// ERROR: Property must be initialized or be abstract
// ERROR: Type parameter of a property must be used in its receiver type
class Owner<T> {
val <R> <caret>p: R
}