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