We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9781f4 commit 94909a3Copy full SHA for 94909a3
libcxx/test/std/utilities/intseq/intseq.binding/structured_binding.pass.cpp
@@ -22,10 +22,10 @@
22
23
template <typename...>
24
void test_structured_bindings() {
25
- constexpr static auto [...empty] = std::make_index_sequence<0>();
+ constexpr static auto [... empty] = std::make_index_sequence<0>();
26
static_assert(sizeof...(empty) == 0);
27
28
- constexpr static auto [...size4] = std::make_index_sequence<4>();
+ constexpr static auto [... size4] = std::make_index_sequence<4>();
29
static_assert(sizeof...(size4) == 4);
30
31
// these cannot yet be static_asserts
0 commit comments