Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
ipa
/
pr63306.C
blob: e22a4c2a0d039d628b3d90917d720c2855a83642 [
file
] [
log
] [
blame
]
// PR c++/63306
// { dg-do compile { target c++11 } }
template
<
typename
...>
class
A
;
class
B
{
B
(
const
int
&,
const
A
<
int
,
int
>
&);
};
B
::
B
(
const
int
&,
const
A
<
int
,
int
>
&)
{
}