[libc][test] Adjust header paths in tests (#119623)
[llvm-project.git] / libcxx / test / std / utilities / template.bitset / includes.pass.cpp
blobb58dac5bf7a6566bf930e6738ff641839ebeaf4c
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // test that <bitset> includes <string> and <iosfwd>
11 #include <bitset>
13 #include "test_macros.h"
15 template <class> void test_typedef() {}
17 int main(int, char**)
19 { // test for <string>
20 std::string s; ((void)s);
22 { // test for <iosfwd>
23 test_typedef<std::ios>();
24 test_typedef<std::istream>();
25 test_typedef<std::ostream>();
26 test_typedef<std::iostream>();
29 return 0;