forked from OSchip/llvm-project
parent
3c169b6f31
commit
4a9eeed2ad
|
@ -0,0 +1,11 @@
|
|||
struct C {
|
||||
int A, B;
|
||||
~C() {}
|
||||
|
||||
void operator^(C b) const { }
|
||||
};
|
||||
|
||||
void test(C *P) {
|
||||
*P ^ *P;
|
||||
}
|
||||
|
Loading…
Reference in New Issue