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
/
ctor6.C
blob
4f21dc9ebf8d64cf0d1a7593552b09bcd3eb310a
1
// PR c++/25663
2
3
template<int> struct A
4
{
5
A(int);
6
};
7
8
void foo()
9
{
10
A<0>(A<0>(0));
11
}