mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-15 20:40:30 +00:00

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6163 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
102 B
C++
9 lines
102 B
C++
struct B { int i(); int j(); };
|
|
|
|
void foo(int (B::*Fn)());
|
|
|
|
void test() {
|
|
foo(&B::i);
|
|
foo(&B::j);
|
|
}
|