blob: 0b93f955ec222db9c551e94f67cfb402738fb98c [file]
// RUN_PIPELINE_TILL: BACKEND
class DropDownComponent<T : Any>(val initialValues: List<T>)
fun test(strings: List<String>) {
val dropDown = DropDownComponent(
initialValues = buildList {
addAll(strings)
}
)
}
/* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration, lambdaLiteral, localProperty, primaryConstructor,
propertyDeclaration, typeConstraint, typeParameter */