Files
kotlin-fork/compiler/testData/readKotlinBinaryClass/class/ClassParamReferencesSelf.kt
T
Stepan Koltsov d2a137d944 fix reading of jet signature with type parameter referencing self
===
class Something<A : Comparable<A>>
===

reported by Max

Also merge copy-paste in JavaDescriptorResolver
2012-02-17 22:32:11 +04:00

6 lines
85 B
Kotlin

package test
trait TraitWithP<P>
class ClassParamReferencesSelf<A : TraitWithP<A>>