repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
RTEMS: Add Cortex-M33 multilib
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
pr94027.C
blob
03cd68f1b0fcd91fe5f9274cc590e62f32469870
1
// { dg-do compile { target c++11 } }
2
// PR 94027 ICE mangling
3
4
class a {
5
public:
6
a (char);
7
};
8
struct b {
9
b (a);
10
};
11
template <typename... aw, int...>
12
void ax (int)
13
{
14
struct c : b {
15
c () : b {sizeof...(aw)}
16
{}
17
};
18
}
19
20
void az() {
21
ax ({});
22
}