includes.pass.cpp revision bc8d3f97eb5c958007f2713238472e0c1c8fe02c
1//===----------------------------------------------------------------------===//
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// test that <bitset> includes <cstddef>, <string>, <stdexcept> and <iosfwd>
11
12#include <bitset>
13
14#ifndef _LIBCPP_CSTDDEF
15#error <cstddef> has not been included
16#endif
17
18#ifndef _LIBCPP_STRING
19#error <string> has not been included
20#endif
21
22#ifndef _LIBCPP_STDEXCEPT
23#error <stdexcept> has not been included
24#endif
25
26#ifndef _LIBCPP_IOSFWD
27#error <iosfwd> has not been included
28#endif
29
30int main()
31{
32}
33