C++程序  |  14行  |  182 B

// RUN: %clang_cc1 -emit-llvm %s -o -

struct Gfx {
  void opMoveSetShowText();
};

struct Operator {
  void (Gfx::*func)();
};

Operator opTab[] = {
  {&Gfx::opMoveSetShowText},
};