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
/
template14.C
blob
ada87524352026b7c88d69db833bea8a2136e84e
1
// PR c++/14550
2
3
struct A {
4
A();
5
};
6
7
template <int> void foo()
8
{
9
A *p = new A;
10
}
11
12
void bar()
13
{
14
foo<0>();
15
}
16
17