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
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
spec18.C
blob
a22e8543d0e784c7959bc07d3768635990b0b5c1
1
// PR c++/17936
2
3
template<int, int N> struct A
4
{
5
void foo();
6
};
7
8
template<int N> struct A<1, N>
9
{
10
void foo();
11
};
12
13
template<> void A<1, 2>::foo();