| 40 | |
| 41 | void set(int _x) { assert(magic == 7654321); this->x = _x; } |
| 42 | int value() const { assert(magic == 7654321); return x; } |
| 43 | static int count() { return counter; } |
| 44 | private: |
| 45 | void operator=(X const&); |
no outgoing calls
no test coverage detected