Searched refs:exp_s (Results 1 – 1 of 1) sorted by relevance
943 typedef expected<const char*, int> exp_s; in TEST() typedef944 constexpr exp_s s("hello"); in TEST()946 static_assert(equals(exp_s().value(), nullptr)); in TEST()947 static_assert(equals(exp_s(s).value(), "hello")); in TEST()948 static_assert(equals(exp_s(exp_s("hello")).value(), "hello")); in TEST()949 static_assert(equals(exp_s("hello").value(), "hello")); in TEST()950 static_assert(equals(exp_s(c).value(), "hello")); in TEST()