Test that a call to a trampoline is turned into a call to
[oota-llvm.git] / test / C++Frontend / 2003-11-18-PtrMemConstantInitializer.cpp
1 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
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