#include <cassert>
#include <concepts>
#include <expected>
#include <type_traits>
#include <utility>
#include "MoveOnly.h"
#include "test_macros.h"
constexpr bool test() {
{
const std::expected<void, int> e;
e.value();
static_assert(std::is_same_v<decltype(e.value()), void>);
}
{
std::expected<void, int> e;
e.value();
static_assert(std::is_same_v<decltype(e.value()), void>);
}
{
std::expected<void, int> e;
std::move(e).value();
static_assert(std::is_same_v<decltype(std::move(e).value()), void>);
}
{
const std::expected<void, int> e;
std::move(e).value();
static_assert(std::is_same_v<decltype(std::move(e).value()), void>);
}
return true;
}
void testException() {
#ifndef TEST_HAS_NO_EXCEPTIONS
{
const std::expected<void, int> e(std::unexpect, 5);
try {
e.value();
assert(false);
} catch (const std::bad_expected_access<int>& ex) {
assert(ex.error() == 5);
}
}
#endif
}
int main(int, char**) {
test();
static_assert(test());
testException();
return 0;
}