| 184 | |
| 185 | struct Copyable { |
| 186 | Copyable(int id) : copied(false), id(id) { } |
| 187 | Copyable(Copyable const& o) : copied(true), id(o.id) { } |
| 188 | void operator=(Copyable const& o) { copied = true; id = o.id; } |
| 189 | bool copied; |
nothing calls this directly
no outgoing calls
no test coverage detected