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 //===----------------------------------------------------------------------===//
8 
9 // UNSUPPORTED: c++98, c++03, c++11, c++14
10 
11 // <filesystem>
12 
13 // namespace std::filesystem
14 
15 #include <filesystem>
16 #include <type_traits>
17 
18 using namespace std::filesystem;
19 
20 int main(int, char**) {
21   static_assert(std::is_same<
22           path,
23           std::filesystem::path
24       >::value, "");
25 
26   return 0;
27 }
28