blob: 72609e7ccb463db6a377c7f94b48d7c3b1ac06b2 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3struct Gfx {
4 void opMoveSetShowText();
5};
6
7struct Operator {
8 void (Gfx::*func)();
9};
10
11Operator opTab[] = {
12 {&Gfx::opMoveSetShowText},
13};
14