blob: 9cecf48611635f66cfea1fddae68b17e5ced5357 [file] [log] [blame]
Eric Christopheraeac10e2011-08-20 00:17:18 +00001// 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};