| 4 | #include <cstdint> |
| 5 | |
| 6 | class MedicalRecordNumber { |
| 7 | public: |
| 8 | MedicalRecordNumber() = default; |
| 9 | explicit MedicalRecordNumber(uint64_t mrn) |
| 10 | : mMRN{mrn} |
| 11 | {} |
| 12 | |
| 13 | private: |
| 14 | uint64_t mMRN; |
| 15 | }; |
| 16 | |
| 17 | int main() |
| 18 | { |
nothing calls this directly
no outgoing calls
no test coverage detected