| 25 | }; |
| 26 | |
| 27 | int main() |
| 28 | { |
| 29 | MedicalRecordNumber mrn0{}; |
| 30 | MedicalRecordNumber mrn1{3}; |
| 31 | |
| 32 | const bool sameMRN = mrn0 == mrn1; |
| 33 | const bool differentMRN = mrn0 != mrn1; |
| 34 | } |
nothing calls this directly
no outgoing calls
no test coverage detected