Searched refs:exp_s (Results 1 – 1 of 1) sorted by relevance
838 typedef expected<const char*, int> exp_s; in TEST() typedef839 constexpr exp_s s("hello"); in TEST()841 static_assert(equals(exp_s().value(), nullptr)); in TEST()842 static_assert(equals(exp_s(s).value(), "hello")); in TEST()843 static_assert(equals(exp_s(exp_s("hello")).value(), "hello")); in TEST()844 static_assert(equals(exp_s("hello").value(), "hello")); in TEST()845 static_assert(equals(exp_s(c).value(), "hello")); in TEST()