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
Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git]
/
main
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash95.C
blob
f60e635ae66dce537e27b635cba7959c38ea942b
1
// PR c++/43705
2
3
template < typename > struct S
4
{
5
template < > struct S < int > // { dg-error "explicit|specialization|template|parameter" }
6
{
7
S(int);
8
};
9
};
10
11
S < int > s(0); // { dg-error "no matching" }