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