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
/
range-for24.C
blob
b4a5b185bd7857f5a7885f27063fdc9d59db3da2
1
// PR c++/56794
2
// { dg-require-effective-target c++11 }
3
4
template<int... values>
5
static void Colors()
6
{
7
static const int colors[] = { values... };
8
9
for(auto c: colors) { }
10
}
11
12
int main()
13
{
14
Colors<0,1,2> ();
15
}