brintos

brintos / llvm-project-archived public Read only

0
0
Text · 182 B · 9cecf48 Raw
14 lines · cpp
1// RUN: %clang_cc1 -emit-llvm %s -o -2 3struct Gfx {4  void opMoveSetShowText();5};6 7struct Operator {8  void (Gfx::*func)();9};10 11Operator opTab[] = {12  {&Gfx::opMoveSetShowText},13};14