summaryrefslogtreecommitdiff
path: root/test/FrontendC++/2003-11-18-PtrMemConstantInitializer.cpp
blob: 72609e7ccb463db6a377c7f94b48d7c3b1ac06b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null

struct Gfx {
  void opMoveSetShowText();
};

struct Operator {
  void (Gfx::*func)();
};

Operator opTab[] = {
  {&Gfx::opMoveSetShowText},
};