Home | History | Annotate | Download | only in FrontendC++
      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 }
     16