Sign in
gnu
/
gcc
/
a8404c07e7fca388c02c39077865f7d5fa928430
/
.
/
gcc
/
testsuite
/
g++.dg
/
pr94027.C
blob: 03cd68f1b0fcd91fe5f9274cc590e62f32469870 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
// PR 94027 ICE mangling
class
a
{
public
:
a
(
char
);
};
struct
b
{
b
(
a
);
};
template
<
typename
...
aw
,
int
...>
void
ax
(
int
)
{
struct
c
:
b
{
c
()
:
b
{
sizeof
...(
aw
)}
{}
};
}
void
az
()
{
ax
({});
}