blob: baa2e5c05f9d4e29485e5e9dfd5b5b85d14eb9af [file] [log] [blame]
Howard Hinnantc51e1022010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
3// ÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊThe LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <thread>
11
12// #define __STDCPP_THREADS __cplusplus
13
14#include <thread>
15
16int main()
17{
18#ifndef __STDCPP_THREADS
19#error __STDCPP_THREADS is not defined
20#endif
21}