xref: /netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/cmake/steady_clock.cpp (revision 2f62cc9c12bc202c40224f32c879f81443fee079)
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