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
/
parse
/
error14.C
blob
4b230453867488b45658c9cebed84abfc2f51b93
1
// PR c++/13970
2
3
struct X
4
{
5
template< typename Z > Z Zunc()
6
{
7
return Z();
8
}
9
10
template< typename Z > void Zinc()
11
{
12
}
13
14
void tst()
15
{
16
Zunc<int>();
17
18
Zinc<int>( //);
19
// }
20
21
}; // { dg-error "" }
22