diff options
Diffstat (limited to 'libcxx/test/utilities/utility/pairs/pairs.pair/default.pass.cpp')
| -rw-r--r-- | libcxx/test/utilities/utility/pairs/pairs.pair/default.pass.cpp | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/libcxx/test/utilities/utility/pairs/pairs.pair/default.pass.cpp b/libcxx/test/utilities/utility/pairs/pairs.pair/default.pass.cpp deleted file mode 100644 index bb6661f7966..00000000000 --- a/libcxx/test/utilities/utility/pairs/pairs.pair/default.pass.cpp +++ /dev/null @@ -1,36 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// 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. -// -//===----------------------------------------------------------------------===// - -// <utility> - -// template <class T1, class T2> struct pair - -// constexpr pair(); - -#include <utility> -#include <cassert> - -int main() -{ - { - typedef std::pair<float, short*> P; - P p; - assert(p.first == 0.0f); - assert(p.second == nullptr); - } - -#if _LIBCPP_STD_VER > 11 - { - typedef std::pair<float, short*> P; - constexpr P p; - static_assert(p.first == 0.0f, ""); - static_assert(p.second == nullptr, ""); - } -#endif -} |

