diff options
Diffstat (limited to 'libcxx/test/std/utilities/template.bitset/bitset.cons/default.pass.cpp')
-rw-r--r-- | libcxx/test/std/utilities/template.bitset/bitset.cons/default.pass.cpp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/libcxx/test/std/utilities/template.bitset/bitset.cons/default.pass.cpp b/libcxx/test/std/utilities/template.bitset/bitset.cons/default.pass.cpp new file mode 100644 index 00000000000..bd5ca7e08b2 --- /dev/null +++ b/libcxx/test/std/utilities/template.bitset/bitset.cons/default.pass.cpp @@ -0,0 +1,39 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// test default ctor + +#include <bitset> +#include <cassert> + +#pragma clang diagnostic ignored "-Wtautological-compare" + +template <std::size_t N> +void test_default_ctor() +{ + { + _LIBCPP_CONSTEXPR std::bitset<N> v1; + assert(v1.size() == N); + for (std::size_t i = 0; i < N; ++i) + assert(v1[i] == false); + } +} + +int main() +{ + test_default_ctor<0>(); + test_default_ctor<1>(); + test_default_ctor<31>(); + test_default_ctor<32>(); + test_default_ctor<33>(); + test_default_ctor<63>(); + test_default_ctor<64>(); + test_default_ctor<65>(); + test_default_ctor<1000>(); +} |