From 59850d0874429601812bc13408cb1f776649027c Mon Sep 17 00:00:00 2001 From: Roman Divacky Date: Wed, 14 Oct 2009 17:57:32 +0000 Subject: Update llvm to r84119. --- test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp (limited to 'test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp') diff --git a/test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp b/test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp new file mode 100644 index 000000000000..96e85b24767f --- /dev/null +++ b/test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp @@ -0,0 +1,15 @@ +// RUN: %llvmgxx %s -S +// XFAIL: darwin + +#include + +class A { +public: + A(); +private: + A(const A&); +}; +void B() +{ + std::set foo; +} -- cgit v1.2.3