Searched defs:PostDec (Results 1 - 1 of 1) sorted by relevance

/external/clang/test/SemaCXX/
H A Doverloaded-operator.cpp115 struct PostDec { struct
116 PostDec operator--(int);
117 PostDec& operator--();
120 void incdec_test(PostInc pi, PostDec pd) {
122 const PostDec& pd1 = pd--;
124 PostDec &pd2 = --pd;

Completed in 1280 milliseconds