15a83710eSEric Fiselier //===----------------------------------------------------------------------===// 25a83710eSEric Fiselier // 357b08b09SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 457b08b09SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 557b08b09SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 65a83710eSEric Fiselier // 75a83710eSEric Fiselier //===----------------------------------------------------------------------===// 8*88ffc727SLouis Dionne 95a83710eSEric Fiselier // UNSUPPORTED: libcpp-has-no-threads 10*88ffc727SLouis Dionne // UNSUPPORTED: libcpp-has-no-localization 115a83710eSEric Fiselier 125a83710eSEric Fiselier // <thread> 135a83710eSEric Fiselier 145a83710eSEric Fiselier // class thread::id 155a83710eSEric Fiselier 165a83710eSEric Fiselier // template<class charT, class traits> 175a83710eSEric Fiselier // basic_ostream<charT, traits>& 185a83710eSEric Fiselier // operator<<(basic_ostream<charT, traits>& out, thread::id id); 195a83710eSEric Fiselier 205a83710eSEric Fiselier #include <thread> 215a83710eSEric Fiselier #include <sstream> 225a83710eSEric Fiselier #include <cassert> 235a83710eSEric Fiselier 247fc6a556SMarshall Clow #include "test_macros.h" 257fc6a556SMarshall Clow 262df59c50SJF Bastien int main(int, char**) 275a83710eSEric Fiselier { 285a83710eSEric Fiselier std::thread::id id0 = std::this_thread::get_id(); 295a83710eSEric Fiselier std::ostringstream os; 305a83710eSEric Fiselier os << id0; 312df59c50SJF Bastien 322df59c50SJF Bastien return 0; 335a83710eSEric Fiselier } 34