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