| 95 | void set(int v) { value = v; } |
| 96 | |
| 97 | static int static_get() { return static_value; } |
| 98 | static void static_set(int v) { static_value = v; } |
| 99 | }; |
| 100 | int TestProperties::static_value = 1; |
nothing calls this directly
no outgoing calls
no test coverage detected