repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Verify the predicates on icmp/fcmp. Suggested by Jeff Yasskin!
[llvm.git]
/
test
/
FrontendC++
/
2009-07-16-PrivateCopyConstructor.cpp
blob
96e85b24767fee8a101f1a6cbf466ab0246801bc
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
}