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

15 lines
199 B
C++

// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
struct Gfx {
void opMoveSetShowText();
};
struct Operator {
void (Gfx::*func)();
};
Operator opTab[] = {
{&Gfx::opMoveSetShowText},
};