hanchenye-llvm-project/llvm/test/Regression/C++Frontend/2003-11-18-PtrMemConstantIn...

13 lines
144 B
C++
Raw Normal View History

2003-11-19 04:24:46 +08:00
struct Gfx {
void opMoveSetShowText();
};
struct Operator {
void (Gfx::*func)();
};
Operator opTab[] = {
{&Gfx::opMoveSetShowText},
};