Verify the predicates on icmp/fcmp. Suggested by Jeff Yasskin!
[llvm.git] / test / FrontendC++ / 2009-07-16-PrivateCopyConstructor.cpp
blob96e85b24767fee8a101f1a6cbf466ab0246801bc
1 // RUN: %llvmgxx %s -S
2 // XFAIL: darwin
4 #include <set>
6 class A {
7 public:
8 A();
9 private:
10 A(const A&);
12 void B()
14 std::set<void *, A> foo;