diff options
-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; |