aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/bool2.C
blob: 4c0edcb3596bcb69297a068f451db2538ec61d82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Make sure that bool bitfields promote to int properly.

struct F {
  bool b1 : 1;
  bool b2 : 7;
};

main()
{
  F f = { true, true };

  if (int (f.b1) != 1)
    return 1;
}