commit | 6d10ac9ef3435993d0ceae7782fbeee7659af30e | [log] [tgz] |
---|---|---|
author | Eli Friedman <eli.friedman@gmail.com> | Mon Nov 16 21:47:41 2009 +0000 |
committer | Eli Friedman <eli.friedman@gmail.com> | Mon Nov 16 21:47:41 2009 +0000 |
tree | 49cfb0bf74a3d0a47cf37d9712fc1cc61ba2a27a | |
parent | a4923eb7c4b04d360cb2747641a5e92818edf804 [diff] [blame] |
Implement a few more cases for copy constructor synthesis. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@88971 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGenCXX/copy-constructor-synthesis.cpp b/test/CodeGenCXX/copy-constructor-synthesis.cpp index 60552a3..3b8f782 100644 --- a/test/CodeGenCXX/copy-constructor-synthesis.cpp +++ b/test/CodeGenCXX/copy-constructor-synthesis.cpp
@@ -44,6 +44,8 @@ const char *name; unsigned bf1 : 8; unsigned bf2 : 16; + int arr[2]; + _Complex float complex; union { int au_i1;