mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-19 01:10:18 +00:00
8 lines
115 B
C++
8 lines
115 B
C++
// Test for std::chrono::year_month_day etc.
|
|
#include <chrono>
|
|
|
|
int main()
|
|
{
|
|
return int(std::chrono::year{1});
|
|
}
|