From: Eric Christopher Date: Fri, 19 Aug 2011 22:00:44 +0000 (+0000) Subject: Remove this test. It's failing and it's not that good of a test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e90e9c3856599ad700119f0fcf21ada8513b6484;p=clang Remove this test. It's failing and it's not that good of a test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138106 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/2009-07-16-PrivateCopyConstructor.cpp b/test/CodeGenCXX/2009-07-16-PrivateCopyConstructor.cpp deleted file mode 100644 index 978fa1932f..0000000000 --- a/test/CodeGenCXX/2009-07-16-PrivateCopyConstructor.cpp +++ /dev/null @@ -1,15 +0,0 @@ -// RUN: %clang_cc1 -emit-llvm %s -o - -// XFAIL: darwin - -#include - -class A { -public: - A(); -private: - A(const A&); -}; -void B() -{ - std::set foo; -}