New testcase, distilled by John

llvm-svn: 8743
This commit is contained in:
Chris Lattner 2003-09-29 21:18:36 +00:00
parent ae5a2fd833
commit 24cb913891

View File

@ -0,0 +1,11 @@
struct C {
int A, B;
~C() {}
void operator^(C b) const { }
};
void test(C *P) {
*P ^ *P;
}