Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
friend25.C
blob: 405ac801de73fdaea211a82d514da90a9af9dd52 [
file
] [
log
] [
blame
]
// { dg-do assemble }
template
<
class
T
>
struct
A
;
struct
B
{
template
<
class
U
>
friend
class
A
<
U
>;
// { dg-error "" } does not specialize any args
};
struct
C
{
template
<
class
U
>
friend
class
A
<
U
*>;
// { dg-error "" } partial specialization
};