diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-06-30 02:06:16 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-06-30 02:06:16 +0000 |
commit | 0e783c2e8672605dcf6d964696ec23050bce0608 (patch) | |
tree | ea5557ed1c61e7c553ad5e8c2a535f796fcc92ae /clang/test/SemaCXX/constructor-initializer.cpp | |
parent | 2e2caefff9b3fed5212522b6cd6637a7a217d735 (diff) | |
download | bcm5719-llvm-0e783c2e8672605dcf6d964696ec23050bce0608.tar.gz bcm5719-llvm-0e783c2e8672605dcf6d964696ec23050bce0608.zip |
Revert r107235, it had a silly typo in it, and fixing the typo breaks something
else. Get the build bots happy while I debug. Very sorry for the delay fixing
this...
llvm-svn: 107239
Diffstat (limited to 'clang/test/SemaCXX/constructor-initializer.cpp')
-rw-r--r-- | clang/test/SemaCXX/constructor-initializer.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/clang/test/SemaCXX/constructor-initializer.cpp b/clang/test/SemaCXX/constructor-initializer.cpp index bf4b289a908..8e9e133d94c 100644 --- a/clang/test/SemaCXX/constructor-initializer.cpp +++ b/clang/test/SemaCXX/constructor-initializer.cpp @@ -204,20 +204,3 @@ C f(C c) { } } - -// Don't build implicit initializers for anonymous union fields when we already -// have an explicit initializer for another field in the union. -namespace PR7402 { - struct S { - union { - void* ptr_; - struct { int i_; }; - }; - - template <typename T> S(T) : ptr_(0) { } - }; - - void f() { - MyStruct s(3); - } -} |