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 ChangeLog and version files for release
[official-gcc.git]
/
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>;