RTEMS: Add Cortex-M33 multilib
[gcc.git] / gcc / testsuite / g++.dg / pr94027.C
blob03cd68f1b0fcd91fe5f9274cc590e62f32469870
1 // { dg-do compile { target c++11 } }
2 // PR 94027 ICE mangling
4 class a {
5 public:
6   a (char);
7 };
8 struct b {
9   b (a);
11 template <typename... aw, int...>
12 void ax (int)
14   struct c : b {
15     c () : b {sizeof...(aw)}
16     {}
17   };
20 void az() {
21   ax ({});