aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/builtin7.C
blob: dae658abc4a5f2e67993535516c92bae83f11326 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/19628
// Verify that __builtin_constant_p may appear in a constant-expression.

// { dg-do run }

int main()
{
  switch (3) {
  case (__builtin_constant_p(7) ? 3 : 8):
    return 0;
  default:
    return 1;
  }
}