c2b38cfa41
#KT-11795 Fixed
10 lines
165 B
Plaintext
Vendored
10 lines
165 B
Plaintext
Vendored
// "Create property 'foo'" "true"
|
|
// ERROR: Property must be initialized
|
|
class Cyclic<E : Cyclic<E>>
|
|
|
|
fun test() {
|
|
val c : Cyclic<*> = foo
|
|
}
|
|
|
|
val foo: Cyclic<*>
|