blob: b315473b5ff895927e9c25d31c88d71ba99ddca1 [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.
//
//===----------------------------------------------------------------------===//
// <thread>
// class thread::id
// id();
#include <thread>
#include <cassert>
int main()
{
std::thread::id id;
assert(id == std::thread::id());
}