hanchenye-llvm-project/clang/test/CodeGenCXX/2003-11-18-PtrMemConstantIn...

14 lines
182 B
C++

// RUN: %clang_cc1 -emit-llvm %s -o -
struct Gfx {
void opMoveSetShowText();
};
struct Operator {
void (Gfx::*func)();
};
Operator opTab[] = {
{&Gfx::opMoveSetShowText},
};