xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/2003-11-18-PtrMemConstantInitializer.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -emit-llvm %s -o -
2 
3 struct Gfx {
4   void opMoveSetShowText();
5 };
6 
7 struct Operator {
8   void (Gfx::*func)();
9 };
10 
11 Operator opTab[] = {
12   {&Gfx::opMoveSetShowText},
13 };
14