| 61 | class ModuleWorld { |
| 62 | public: |
| 63 | ModuleWorld() : msg("hello") {} |
| 64 | void set(std::string msg_) { this->msg = msg_; } |
| 65 | void set_ref(std::string& msg_) { this->msg = msg_; } |
| 66 | void set_const_ref(const std::string& msg_) { this->msg = msg_; } |
nothing calls this directly
no outgoing calls
no test coverage detected