blob: 3a68d675896b490ebd171e762911a96f2d20169d [file] [log] [blame]
Chris Lattner4cfeac82004-03-08 05:35:12 +00001
2struct s {
3 unsigned long long u33: 33;
4 unsigned long long u40: 40;
5};
6
7struct s a = { 1, 2};
8
9int foo() {
10 return a.u40;
11}