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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash45.C
blob
f138e3d6169fcb9380f6b98576dcbdee7a55171c
1
// PR c++/26365
2
3
struct A {};
4
5
namespace N
6
{
7
template<int> void foo();
8
}
9
10
void bar(A *p)
11
{
12
p->N::foo<0>; // { dg-error "not a member" }
13
}