llvm/test/C++Frontend/2003-11-18-PtrMemConstantInitializer.cpp

13 lines
144 B
C++
Raw Normal View History

struct Gfx {
void opMoveSetShowText();
};
struct Operator {
void (Gfx::*func)();
};
Operator opTab[] = {
{&Gfx::opMoveSetShowText},
};