aboutsummaryrefslogtreecommitdiff
path: root/test/C++Frontend/2003-09-29-ArgumentNumberMismatch.cpp
blob: 9e348b6e134186e11aaecad96b136ea8f5e73e2d (plain)
1
2
3
4
5
6
7
8
9
10
11
struct C {
        int A, B;
        ~C() {}

	void operator^(C b) const { }
};

void test(C *P) {
        *P ^ *P;
}