| 52 | }; |
| 53 | |
| 54 | int main() |
| 55 | { |
| 56 | MedicalRecordNumber mrn0{}; |
| 57 | MedicalRecordNumber mrn1{3}; |
| 58 | |
| 59 | const bool sameMRN = mrn0 == mrn1; |
| 60 | const bool differentMRN = mrn0 != mrn1; |
| 61 | const bool sameMRNasNumber = 8 == mrn0; |
| 62 | const bool sameMRNasNumberOther = mrn0 == 8; |
| 63 | } |
nothing calls this directly
no outgoing calls
no test coverage detected