blob: 8880509285544dcb16d6ed878900bd076127ef2d [file]
// RUN_PIPELINE_TILL: BACKEND
open class Base<T1>(val x: T1)
class Derived<T2 : Any>(x: T2) : Base<T2>(x)
fun <T3 : Any> create(x: T3) /* Derived<T3> */ = Derived(x)
/* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration, nullableType, primaryConstructor, propertyDeclaration,
typeConstraint, typeParameter */