aboutsummaryrefslogtreecommitdiff
path: root/tests/tests2/86-struct-init.c
Commit message (Collapse)AuthorAgeFilesLines
* struct-init: Implement initializing subaggregatesMichael Matz2016-12-151-0/+139
E.g. "struct { struct S s; int a;} = { others, 42 };" if 'others' is also a 'struct S'. Also when the value is a compound literal. See added testcases.