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