| 501 | template <class X> class AobjWrapper { |
| 502 | public: |
| 503 | AobjWrapper() = default; |
| 504 | // delete all other constructors |
| 505 | template <class TT> AobjWrapper(TT &&obj) = delete; |
| 506 | // single assignment operator |
nothing calls this directly
no outgoing calls
no test coverage detected