Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/property/valOnClassObject.kt
T

13 lines
190 B
Kotlin

// "Create property 'foo'" "true"
// ERROR: Property must be initialized or be abstract
class A<T>(val n: T) {
companion object {
}
}
fun test() {
val a: Int = A.<caret>foo
}