aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/init12.C
blob: 9b7242699ee1effe7cdc3bb9fb1f21734c8ae86e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// { 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)();
}