xref: /csrg-svn/old/dbx/tests/cc/ushort.c (revision 44103)
1*44103Sbostic struct {
2*44103Sbostic     int a;
3*44103Sbostic     unsigned short s;
4*44103Sbostic     int b;
5*44103Sbostic } u;
6*44103Sbostic 
main()7*44103Sbostic main ()
8*44103Sbostic {
9*44103Sbostic     u.s = 0xffff;
10*44103Sbostic }
11