summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/torture/pr71452.C
blob: 3ebe3a176f36e48782e62ba7ab4a2c17edc3dfeb (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do run }

int main()
{
  bool b;
  *(char *)&b = 123;
  if (*(char *)&b != 123)
    __builtin_abort ();
  return 0;
}