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
/
template
/
array4.C
blob
c72782b10ee32bf92aaeee57de870e07a621c944
1
// PR c++/14122
2
3
extern const char str[];
4
5
template <const char* P>
6
struct A
7
{
8
template <const char* R> void foo();
9
};
10
11
template class A<str>;