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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash105.C
blob
8cfff6a367d245dfb02befccd078f875111237c8
1
// PR c++/44118
2
3
template < typename > struct S;
4
template < typename > struct S < int >; // { dg-error "template" }
5
template < typename > struct S < int >
6
{
7
void f ();
8
};
9
10
void
11
f ()
12
{
13
S < int >::f ();
14
}
15
16
// Don't be picky about error-recovery.
17
// { dg-prune-output "." }