11 lines
227 B
Kotlin
11 lines
227 B
Kotlin
// "Create property 'foo'" "true"
|
|
// ERROR: Property must be initialized or be abstract
|
|
|
|
class A<T>(val n: T) {
|
|
inner class B<U>(val m: U) {
|
|
fun test(): A<Int> {
|
|
return this.<caret>foo
|
|
}
|
|
}
|
|
}
|