Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
alias-decl-25.C
blob: a388ae41089d49a31eb6c9c54e72d50497dba747 [
file
] [
log
] [
blame
]
// PR c++/54859
// { dg-do compile { target c++11 } }
template
<
unsigned
N
>
using
Num
=
int
;
template
<
typename
...
Types
>
using
Count
=
Num
<
sizeof
...(
Types
)>;
Count
<
int
,
char
,
void
>
i
;