Lines Matching defs:e
26 const std::expected<void, int> e;
27 e.value();
28 static_assert(std::is_same_v<decltype(e.value()), void>);
33 std::expected<void, int> e;
34 e.value();
35 static_assert(std::is_same_v<decltype(e.value()), void>);
40 std::expected<void, int> e;
41 std::move(e).value();
42 static_assert(std::is_same_v<decltype(std::move(e).value()), void>);
47 const std::expected<void, int> e;
48 std::move(e).value();
49 static_assert(std::is_same_v<decltype(std::move(e).value()), void>);
60 const std::expected<void, int> e(std::unexpect, 5);
62 e.value();