mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-07 05:28:42 +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});
|
||
|
}
|