blob: 9e348b6e134186e11aaecad96b136ea8f5e73e2d [file] [log] [blame]
Chris Lattner0f44ad32003-09-29 21:18:36 +00001struct C {
2 int A, B;
3 ~C() {}
4
5 void operator^(C b) const { }
6};
7
8void test(C *P) {
9 *P ^ *P;
10}
11