Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
init12.C
blob: 9b7242699ee1effe7cdc3bb9fb1f21734c8ae86e [
file
] [
log
] [
blame
]
// { dg-do link }
// { dg-options "-O3" }
// Origin: Mark Mitchell <mark@codesourcery.com>
typedef
int
(*
fp
)();
struct
S
{
fp f
;
};
struct
T
{
static
int
f
()
{
return
0
;
}
};
static
const
S s
=
{
&
T
::
f
};
int
main
()
{
return
(*
s
.
f
)();
}