c89d1af9fa
Place generated property next to other properties #KT-14886 Fixed
9 lines
164 B
Plaintext
Vendored
9 lines
164 B
Plaintext
Vendored
val foo: Cyclic<*>
|
|
|
|
// "Create property 'foo'" "true"
|
|
// ERROR: Property must be initialized
|
|
class Cyclic<E : Cyclic<E>>
|
|
|
|
fun test() {
|
|
val c : Cyclic<*> = foo
|
|
} |