https://godbolt.org/z/88MK6z
#define AK_TOOLKIT_CONFIG_USING_STRING_VIEW 4
//#define AK_TOOLKIT_CONFIG_USING_STRING
#include <static_string.hpp>
namespace sstring = ak_toolkit::static_str;
int Foo()
{
constexpr auto foo = sstring::literal("foo");
std::string str1 = foo;
std::string str2;
str2 = foo; // <<--- error: ambiguous overload for 'operator='
}