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