| 127 | return x.value; |
| 128 | } |
| 129 | double Test_get_x_ref(ModuleTest& x) { |
| 130 | return x.value; |
| 131 | } |
| 132 | double Test_get_x_const_pointer(const ModuleTest* x) { |
| 133 | return x->value; |
| 134 | } |
nothing calls this directly
no outgoing calls
no test coverage detected