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

11 lines
205 B
Plaintext
Vendored

// "Create member property 'foo'" "true"
// ERROR: Property must be initialized or be abstract
class A<T>(val n: T) {
private val foo: A<Int>
fun test(): A<Int> {
return this.foo
}
}