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)();
}