Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
access16.C
blob: bb7ebccb8b587763087a4a153bc69cde08a0978f [
file
] [
log
] [
blame
]
// PR c++/23842
struct
S
;
extern
S
*
p
;
template
<
class
T
>
int
f
(
T
*,
int
y
=
((
T
*)
p
)->
x
)
{
return
y
;
}
struct
S
{
private
:
int
x
;
template
<
class
U
>
friend
int
f
(
U
*,
int
);
};
int
g
()
{
return
f
(
p
);
}