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
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
alias-decl-25.C
blob
a388ae41089d49a31eb6c9c54e72d50497dba747
1
// PR c++/54859
2
// { dg-do compile { target c++11 } }
3
4
template<unsigned N>
5
using Num = int;
6
7
template<typename... Types>
8
using Count = Num<sizeof...(Types)>;
9
10
Count<int, char, void> i;