1 #include <chrono> 2 main()3 int main() { 4 typedef std::chrono::steady_clock Clock; 5 Clock::time_point tp = Clock::now(); 6 ((void)tp); 7 } 8