blob: 898dc09984e2cb195b31a29496063b6518287cc4 [file] [log] [blame]
// PR c++/61804
struct T { void operator++(int); };
void f() { (T())++; }
struct U { void operator--(int); };
void g() { (U())--; }
void h() { int a; (int)++a; (int)--a; }