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