//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template struct pair // template // pair(piecewise_construct_t, tuple first_args, // tuple second_args); #include #include #include int main() { #ifndef _LIBCPP_HAS_NO_VARIADICS { typedef std::pair P1; typedef std::pair P2; typedef std::pair P3; P3 p3(std::piecewise_construct, std::tuple(3, nullptr), std::tuple(nullptr, 4)); assert(p3.first == P1(3, nullptr)); assert(p3.second == P2(nullptr, 4)); } #endif // _LIBCPP_HAS_NO_VARIADICS }