[cfe-commits] r138106 - /cfe/trunk/test/CodeGenCXX/2009-07-16-PrivateCopyConstructor.cpp

Eric Christopher echristo at apple.com
Fri Aug 19 15:00:44 PDT 2011


Author: echristo
Date: Fri Aug 19 17:00:44 2011
New Revision: 138106

URL: http://llvm.org/viewvc/llvm-project?rev=138106&view=rev
Log:
Remove this test. It's failing and it's not that good of a test.

Removed:
    cfe/trunk/test/CodeGenCXX/2009-07-16-PrivateCopyConstructor.cpp

Removed: cfe/trunk/test/CodeGenCXX/2009-07-16-PrivateCopyConstructor.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/2009-07-16-PrivateCopyConstructor.cpp?rev=138105&view=auto
==============================================================================
--- cfe/trunk/test/CodeGenCXX/2009-07-16-PrivateCopyConstructor.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/2009-07-16-PrivateCopyConstructor.cpp (removed)
@@ -1,15 +0,0 @@
-// RUN: %clang_cc1 -emit-llvm %s -o -
-// XFAIL: darwin
-
-#include <set>
-
-class A {
-public:
-  A();
-private:
-  A(const A&);
-};
-void B()
-{
-  std::set<void *, A> foo;
-}





More information about the cfe-commits mailing list