diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2010-01-03 01:20:41 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2010-01-03 01:20:41 +0000 |
commit | 69c1d02e9bb94d10d7ccacaf94889c3d976ca8e7 (patch) | |
tree | d78f9853a2b2488f6e98e9e74313494c12b4cbeb | |
parent | 696f87bc39652992516fa7ca8399c38f3faae826 (diff) |
Improve coverage for test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92440 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/copy-assign-synthesis-3.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/CodeGenCXX/copy-assign-synthesis-3.cpp b/test/CodeGenCXX/copy-assign-synthesis-3.cpp index 0c876d02ec..73c2261cdd 100644 --- a/test/CodeGenCXX/copy-assign-synthesis-3.cpp +++ b/test/CodeGenCXX/copy-assign-synthesis-3.cpp @@ -9,6 +9,8 @@ struct B { float b; int (A::*c)(); _Complex float d; + int e[10]; + A f[2]; }; void a(B& x, B& y) { x = y; |