mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
15 lines
132 B
C++
15 lines
132 B
C++
|
// RUN: %llvmgxx %s -S
|
||
|
|
||
|
#include <set>
|
||
|
|
||
|
class A {
|
||
|
public:
|
||
|
A();
|
||
|
private:
|
||
|
A(const A&);
|
||
|
};
|
||
|
void B()
|
||
|
{
|
||
|
std::set<void *, A> foo;
|
||
|
}
|