From: Eli Friedman Date: Sun, 3 Jan 2010 01:20:41 +0000 (+0000) Subject: Improve coverage for test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=69c1d02e9bb94d10d7ccacaf94889c3d976ca8e7;p=clang Improve coverage for test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92440 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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;