repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
default11.C
blob
e747c44a11bbded23c4d102f2eafb336bfd8521e
1
// PR c++/65370
2
3
template <typename> class C
4
{
5
template <typename U>
6
C(const C<U>&, bool = false);
7
};
8
9
template <>
10
template <typename U>
11
C<int>::C(const C<U>&, bool);