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