| 13 | namespace leaf = boost::leaf; |
| 14 | |
| 15 | struct A |
| 16 | { |
| 17 | int x; |
| 18 | A() noexcept: |
| 19 | x(0) |
| 20 | { |
| 21 | } |
| 22 | |
| 23 | A( int x_ ) noexcept: |
| 24 | x(x_) |
| 25 | { |
| 26 | } |
| 27 | }; |
| 28 | |
| 29 | leaf::result<int> f() |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected