projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
084e807
)
Make test more interesting
author
Chris Lattner
<sabre@nondot.org>
Mon, 12 May 2003 23:33:00 +0000
(23:33 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Mon, 12 May 2003 23:33:00 +0000
(23:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6162
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/C++Frontend/pointer_member.cpp
patch
|
blob
|
history
diff --git
a/test/C++Frontend/pointer_member.cpp
b/test/C++Frontend/pointer_member.cpp
index 750e692e1f3479d4842ab2cd34d2b0252cffc595..3c8e25fe706cf8e8386596232e736fd4d66a077a 100644
(file)
--- a/
test/C++Frontend/pointer_member.cpp
+++ b/
test/C++Frontend/pointer_member.cpp
@@
-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;