14 lines
182 B
C++
14 lines
182 B
C++
|
// RUN: %clang_cc1 -emit-llvm %s -o -
|
||
|
|
||
|
struct Gfx {
|
||
|
void opMoveSetShowText();
|
||
|
};
|
||
|
|
||
|
struct Operator {
|
||
|
void (Gfx::*func)();
|
||
|
};
|
||
|
|
||
|
Operator opTab[] = {
|
||
|
{&Gfx::opMoveSetShowText},
|
||
|
};
|