Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/property/recursiveBound.kt
T
2015-08-19 23:29:55 +03:00

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
}