//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // allocator: // template // bool // operator==(const allocator&, const allocator&) throw(); // // template // bool // operator!=(const allocator&, const allocator&) throw(); #include #include #include "test_macros.h" int main(int, char**) { std::allocator a1; std::allocator a2; assert(a1 == a2); assert(!(a1 != a2)); return 0; }