mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
aeeaf805c6
llvm-svn: 76095
16 lines
149 B
C++
16 lines
149 B
C++
// RUN: %llvmgxx %s -S
|
|
// XFAIL: darwin
|
|
|
|
#include <set>
|
|
|
|
class A {
|
|
public:
|
|
A();
|
|
private:
|
|
A(const A&);
|
|
};
|
|
void B()
|
|
{
|
|
std::set<void *, A> foo;
|
|
}
|