Make test more interesting

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

View File

@ -1,4 +1,5 @@
struct B { int i; };
struct B { int i, j; };
struct D : public B {};
int D::*dp = &D::i;
int D::*di = &D::i;
int D::*dj = &D::j;