llvm-6502/test/FrontendC++/2009-07-16-PrivateCopyConstructor.cpp
2009-07-16 13:35:42 +00:00

15 lines
132 B
C++

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