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
PR c++/85262 - ICE with redundant qualification on constructor.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
parse
/
def-tmpl-arg1.C
blob
6c3659f750266b5830d7e1bca392798474fa7859
1
// PR c++/8895
2
// Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
3
// { dg-do compile }
4
5
template <typename X, typename Y = B<X> > struct A // { dg-error "" }
6
{
7
A();
8
A(const A&);
9
};