]> andersk Git - splint.git/blob - test/unioninit.c
Fixed manual csvoverwrite.
[splint.git] / test / unioninit.c
1 union test2_u {
2   short   test2_s;
3   struct  test2_ius_s {
4     unsigned char a;
5     unsigned char b;
6   } test2_ius;
7 };
8
9 union test2_u test2 = { 0 };
10
11 union test2_u test3 = { 0, 1 }; /* bad */
12
13 union test2_u test4 = { 23L }; /* bad */
This page took 0.152486 seconds and 5 git commands to generate.