MCPcopy Create free account
hub / github.com/andreasfertig/programming-with-cpp20 / A

Class A

11.14-conditionalExplicit2/main.cpp:8–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6struct B {};
7
8struct A {
9 A() = default;
10 explicit A(const B&) {}
11 operator B() const { return {}; };
12};
13
14template<typename T>
15struct Wrapper {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected