mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-28 16:58:51 +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});
|
|
}
|