llvm-6502/test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp

15 lines
132 B
C++
Raw Normal View History

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