1main()
2{
3int j=1081;
4struct
5{
6signed int m:11;
7}l;
8if((l.m=j)==j)abort();
9exit(0);
10}
11