New testcase, distilled by John

llvm-svn: 8743
This commit is contained in:
Chris Lattner 2003-09-29 21:18:36 +00:00
parent 3c169b6f31
commit 4a9eeed2ad
1 changed files with 11 additions and 0 deletions

View File

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