Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
access21.C
blob: 8414c4371f4f9b97ef91c3890f47c9695e6997ba [
file
] [
log
] [
blame
]
// PR c++/48884
class
X
{
static
const
int
I
=
42
;
friend
struct
Y
;
};
template
<
int
I
>
struct
A
{
};
struct
Y
{
template
<
typename
T
>
static
A
<
T
::
I
>
f
(
T t
)
{
return
A
<
T
::
I
>();
}
};
int
main
()
{
Y
::
f
(
X
());
}