Home
last modified time | relevance | path

Searched refs:exp_s (Results 1 – 1 of 1) sorted by relevance

/system/libbase/
Dexpected_test.cpp838 typedef expected<const char*, int> exp_s; in TEST() typedef
839 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()