blob: 4d1ffad45937795fce8e9db59b30215f6a28bb64 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// UNSUPPORTED: libcpp-has-no-threads
// <thread>
// class thread
// unsigned hardware_concurrency();
#include <thread>
#include <cassert>
int main()
{
assert(std::thread::hardware_concurrency() > 0);
}