//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template // bool operator< (const stack& x,const stack& y); // // template // bool operator> (const stack& x,const stack& y); // // template // bool operator>=(const stack& x,const stack& y); // // template // bool operator<=(const stack& x,const stack& y); #include #include template C make(int n) { C c; for (int i = 0; i < n; ++i) c.push(i); return c; } int main() { std::stack q1 = make >(5); std::stack q2 = make >(10); assert(q1 < q2); assert(q2 > q1); assert(q1 <= q2); assert(q2 >= q1); }