| 47 | } |
| 48 | |
| 49 | leaf::result<value> f3() |
| 50 | { |
| 51 | BOOST_LEAF_ASSIGN(auto a, f2()); |
| 52 | BOOST_LEAF_ASSIGN(auto b, f2()); // Invoking the macro twice in the same scope, testing the temp name generation |
| 53 | return value { a.x + b.x }; |
| 54 | } |
| 55 | |
| 56 | int main() |
| 57 | { |