xref: /netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/cmake/steady_clock.cpp (revision 4724848cf0da353df257f730694b7882798e5daf)
1 #include <chrono>
2 
3 int main() {
4     typedef std::chrono::steady_clock Clock;
5     Clock::time_point tp = Clock::now();
6     ((void)tp);
7 }
8