repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove outermost loop parameter.
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr31443.C
blob
1eb9d318de0065445010f9a7b94119370a030156
1
// { dg-options "-std=gnu++0x" }
2
3
template<int, typename... T> struct A
4
{
5
template<int N> void foo(A<N,T>); // { dg-error "parameter packs|T" }
6
};
7
8
void bar()
9
{
10
A<0,int>().foo(A<0,int>()); // { dg-error "no member named" }
11
}