Describe the bug
A new LWG issue was just filed because of a defect in the C++20 chrono parse overloads.
https://cplusplus.github.io/LWG/issue3554
As I write this, the issue hasn't been looked at by the LWG. I am hopeful for a quick P0 resolution. The recommended wording in the issue has been implemented at https://github.com/HowardHinnant.
Command-line test case
This should work:
in >> parse("%F %T", tp);
where tp is system_clock::time_point and in is any istream. Right now it doesn't work because parse is lacking an overload to take the format string literal.