Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
local7.C
blob: 3045534eaa6a1b94bac2da53db19ab0ee5fa008c [
file
] [
log
] [
blame
]
// PR c++/53599
template
<
typename
T
>
int
foo
()
{
struct
F
;
struct
G
{
static
int
F
::*
bar
();
};
return
sizeof
(
G
);
}
int
z
=
foo
<int>
();