opnsense-src/test/FrontendC++/2003-11-18-PtrMemConstantInitializer.cpp
2009-10-14 17:57:32 +00:00

14 lines
196 B
C++

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