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
/
vt-34399.C
blob
74f35f7334329bd08a05791087b5ea2446a383a2
1
// { dg-do compile { target c++11 } }
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
};