repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
parse
/
template8.C
blob
e4af7eea3a56ee51e01917e5b4bc427e3379af91
1
namespace N
2
{
3
4
template <typename> struct A
5
{
6
template <typename T> A(A<T>);
7
};
8
9
}
10
11
void foo(N::A<int>);
12
13
void bar()
14
{
15
foo(N::A); // { dg-error "" }
16
}