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