1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 // template <class T, class Container>
12 // bool operator< (const stack<T, Container>& x,const stack<T, Container>& y);
14 // template <class T, class Container>
15 // bool operator> (const stack<T, Container>& x,const stack<T, Container>& y);
17 // template <class T, class Container>
18 // bool operator>=(const stack<T, Container>& x,const stack<T, Container>& y);
20 // template <class T, class Container>
21 // bool operator<=(const stack<T, Container>& x,const stack<T, Container>& y);
26 #include "test_macros.h"
33 for (int i
= 0; i
< n
; ++i
)
40 std::stack
<int> q1
= make
<std::stack
<int> >(5);
41 std::stack
<int> q2
= make
<std::stack
<int> >(10);