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