MCPcopy Create free account
hub / github.com/boostorg/leaf / A

Class A

test/result_implicit_conversion_test.cpp:15–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13namespace leaf = boost::leaf;
14
15struct 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
29leaf::result<int> f()
30{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected