Free the constants that have no uses in ~LLVMContext.
[oota-llvm.git] / test / FrontendC++ / 2009-07-16-PrivateCopyConstructor.cpp
1 // RUN: %llvmgxx %s -S
2 // XFAIL: darwin
3
4 #include <set>
5
6 class A {
7 public:
8   A();
9 private:
10   A(const A&);
11 };
12 void B()
13 {
14   std::set<void *, A> foo;
15 }