RFC 3339, section 5.6 specifies that the `time-hour` field must be two digits wide. However, [`Parse` permits that field having only a single digit](https://go.dev/play/p/Qo4_YDlHt6w): ```go Parse(time.RFC3339, "0000-01-01T0:00:00+00:00") ``` reports nil rather than an error.