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
/
vt-34399.C
blob
542fae586ca8a3336952b8b493d09a0a7524e94c
1
// { dg-options "-std=c++0x" }
2
template<int...> struct A
3
{
4
void foo();
5
};
6
7
struct B
8
{
9
template<int N> friend void A<N>::A::foo(); // { dg-error "declared as friend" }
10
};