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