annotate gcc/testsuite/g++.dg/cpp0x/constexpr-and.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 // PR c++/56481
kono
parents:
diff changeset
2 // Non-linearity in potential_constant_expression_1
kono
parents:
diff changeset
3 // { dg-do compile { target c++11 } }
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 struct S
kono
parents:
diff changeset
6 {
kono
parents:
diff changeset
7 constexpr bool foo ();
kono
parents:
diff changeset
8 #define A(n) , f##n##0, f##n##1, f##n##2, f##n##3
kono
parents:
diff changeset
9 #define B(n) A(n##0) A(n##1) A(n##2) A(n##3)
kono
parents:
diff changeset
10 #define C B(0) B(1) B(2) B(3)
kono
parents:
diff changeset
11 bool f C;
kono
parents:
diff changeset
12 };
kono
parents:
diff changeset
13
kono
parents:
diff changeset
14 constexpr bool
kono
parents:
diff changeset
15 S::foo ()
kono
parents:
diff changeset
16 {
kono
parents:
diff changeset
17 #undef A
kono
parents:
diff changeset
18 #define A(n) && f##n##0 && f##n##1 && f##n##2 && f##n##3
kono
parents:
diff changeset
19 return f C;
kono
parents:
diff changeset
20 }