//===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// // // explicit stack(Container&& = Container()); // before C++20 // stack() : stack(Container()) {} // C++20 // explicit stack(Container&&); // before C++20 #include #include #include #include "test_macros.h" #include "test_allocator.h" #if TEST_STD_VER >= 11 #include "test_convertible.h" #endif int main(int, char**) { typedef std::vector > Container; typedef std::stack Q; Q q; assert(q.size() == 0); q.push(1); q.push(2); assert(q.size() == 2); assert(q.top() == 2); #if TEST_STD_VER >= 11 // It should be explicit, so not convertible before C++20. static_assert(test_convertible(), ""); #endif return 0; }