Add test for handling ptrmem_cst

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6163 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-05-12 23:34:59 +00:00
parent 4c10acae4d
commit 6736dce150

View File

@ -0,0 +1,8 @@
struct B { int i(); int j(); };
void foo(int (B::*Fn)());
void test() {
foo(&B::i);
foo(&B::j);
}