aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/init12.C
blob: ee0a029253aee103329502ac96acdb1807165c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Build don't run:
// Special g++ Options: -O3
// Origin: Mark Mitchell <mark@codesourcery.com>

typedef int (*fp)();
 
struct S
{
  fp f;
};

struct T
{
  static int f() {}
};

static const S s = { &T::f };

int main()
{
  return (*s.f)();
}