template<std::size_t N>
using wstring = sprout::basic_string<wchar_t, N>;
#include <type_traits>
#include <sprout/string.hpp>
using namespace sprout;
using type = wstring<8>;
static_assert(std::is_same<type::value_type, wchar_t>::value, "element type of wstring is charwchar_t