repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR c++/85765 - SFINAE and non-type default template arg.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr32252.C
blob
715ad27db8ad4300bc6f1f9853bec4733baa4208
1
// { dg-do compile { target c++11 } }
2
int x[5];
3
4
template<int M, int N, int (&... p)[N]> struct A;
5
6
template<int M> struct A<M,5,x> {};
7
8
A<0,5,x> a;