Testcase for PR128
[oota-llvm.git] / test / C++Frontend / 2003-11-18-PtrMemConstantInitializer.cpp
1 struct Gfx {
2   void opMoveSetShowText();
3 };
4
5 struct Operator {
6   void (Gfx::*func)();
7 };
8
9 Operator opTab[] = {
10   {&Gfx::opMoveSetShowText},
11 };
12