diff options
Diffstat (limited to 'test/test-static-stream_support.cpp')
-rw-r--r-- | test/test-static-stream_support.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/test-static-stream_support.cpp b/test/test-static-stream_support.cpp new file mode 100644 index 0000000..367d5a2 --- /dev/null +++ b/test/test-static-stream_support.cpp @@ -0,0 +1,11 @@ +#include "stream_support.hpp" + +#include <array> +#include <vector> + +static_assert(spanable<std::vector<int>>); +static_assert(spanable<std::vector<char>>); +static_assert(spanable<std::array<int, 1>>); +static_assert(spanable<std::array<char, 1>>); +static_assert(!spanable<std::string>); +static_assert(!spanable<std::string_view>); |