]> andersk Git - splint.git/blob - test/temp/enumadd.c
73f7574a4881bbcf01faa932b49e57abc4c134ea
[splint.git] / test / temp / enumadd.c
1 enum Months {Jan = 1, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct,
2              Nov, Dec};
3
4 int main()
5 {
6   int i = Jan + Oct;/*should LClint complain that a enumerated*/
7   /*type was passed to the + operator? */
8   return i;
9 }
This page took 0.024035 seconds and 3 git commands to generate.