1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp

16 lines
149 B
C++

// RUN: %llvmgxx %s -S
// XFAIL: darwin
#include <set>
class A {
public:
A();
private:
A(const A&);
};
void B()
{
std::set<void *, A> foo;
}