aboutsummaryrefslogtreecommitdiff
path: root/tests/tests2/82_attribs_position.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix function typesMichael Matz2017-07-141-0/+5
| | | | | various cases of function type uses were broken by recent attribute refactoring, this fixes and adds testcases for them.
* tccgen.c: Allow type attributes to prefix enum/struct/union nameVlad Vissoultchev2016-04-061-0/+14
From gcc docs: "You may also specify attributes between the enum, struct or union tag and the name of the type rather than after the closing brace." Adds `82_attribs_position.c` in `tests/tests2`