#include <mdspan>
#include <cassert>
#include <array>
#include <cstdint>
#include <cstdio>
#include "test_macros.h"
template <class E, class... Args>
constexpr void test_stride(std::array<typename E::index_type, E::rank()> strides, Args... args) {
using M = std::layout_left::mapping<E>;
M m(E(args...));
ASSERT_NOEXCEPT(m.stride(0));
for (size_t r = 0; r < E::rank(); r++)
assert(strides[r] == m.stride(r));
}
constexpr bool test() {
constexpr size_t D = std::dynamic_extent;
test_stride<std::extents<unsigned, D>>(std::array<unsigned, 1>{1}, 7);
test_stride<std::extents<unsigned, 7>>(std::array<unsigned, 1>{1});
test_stride<std::extents<unsigned, 7, 8>>(std::array<unsigned, 2>{1, 7});
test_stride<std::extents<int64_t, D, 8, D, D>>(std::array<int64_t, 4>{1, 7, 56, 504}, 7, 9, 10);
return true;
}
int main(int, char**) {
test();
static_assert(test());
return 0;
}