mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-08 05:23:44 +02:00
7 lines
115 B
C++
7 lines
115 B
C++
// Test for std::chrono::year_month_day etc.
|
|
#include <chrono>
|
|
|
|
int main()
|
|
{
|
|
return int(std::chrono::year{1});
|
|
}
|