// -*- C++ -*- //===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // template // void sleep_for(const chrono::duration& rel_time); // The std::this_thread::sleep_for test requires POSIX specific headers and // is therefore non-standard. For this reason the test lives under the 'libcxx' // subdirectory. int main(int, char**) { return 0; }