Roast topics
Find topics
Roast it!
Roast topics
Find topics
Find it!
Login
From:
godbolt.org
(Uncensored)
subscribe
Compiler Explorer
https://godbolt.org/z/7KPvYb8r4
links
backlinks
int main() { std::expected<int, std::string> result{std::unexpected("")}; try { std::cout << "Value: " << result.value() << '\n'; } catch (const std::bad_expected_access<std::string>& e) { std::cout << "Caught error: " << e.what() << '\n'; } }