d18a9f6d8a
#EA-69240 Fixed
7 lines
151 B
Kotlin
Vendored
7 lines
151 B
Kotlin
Vendored
// "Create property 'foo'" "true"
|
|
// ERROR: Property must be initialized
|
|
class Cyclic<E : Cyclic<E>>
|
|
|
|
fun test() {
|
|
val c : Cyclic<*> = <caret>foo
|
|
} |