| 11 | static cxx20::expected<int, std::string> getInt3(int val) { return val; } |
| 12 | |
| 13 | static cxx20::expected<int, std::string> getInt2(int val) { return val; } |
| 14 | |
| 15 | static cxx20::expected<int, std::string> getInt1() { |
| 16 | return getInt2(5).and_then(getInt3); |