blob: 96e85b24767fee8a101f1a6cbf466ab0246801bc [file] [log] [blame]
Rafael Espindola5618d802009-07-16 13:35:42 +00001// RUN: %llvmgxx %s -S
Chris Lattnerbf61e3b2009-07-16 18:45:51 +00002// XFAIL: darwin
Rafael Espindola5618d802009-07-16 13:35:42 +00003
4#include <set>
5
6class A {
7public:
8 A();
9private:
10 A(const A&);
11};
12void B()
13{
14 std::set<void *, A> foo;
15}