def getId(userId: UserId): Long = userId + 1 | |
def getId(deviceUuid: DeviceUuid): Long = deviceUuid + 2 // Not Compiled because tagged type erased after compile | |
def getId(carSerialId: CarSerialId): Long = carSerialId + 3 // Not Compiled because tagged type erased after compile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment