Reland [OffloadBundler] Compress bundles over 4GB (#122307)
[llvm-project.git] / libcxx / test / std / thread / thread.condition / thread.condition.condvar / default.pass.cpp
blob9baa73e05df55c7e0e0afe3f79c84c6a05e7a6bf
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // UNSUPPORTED: no-threads
11 // <condition_variable>
13 // class condition_variable;
15 // condition_variable();
17 #include <condition_variable>
18 #include <cassert>
20 #include "test_macros.h"
22 int main(int, char**)
24 std::condition_variable cv;
25 static_cast<void>(cv);
27 return 0;