• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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++03
10 
11 // <experimental/filesystem>
12 
13 // namespace std::experimental::filesystem::v1
14 
15 #include <experimental/filesystem>
16 #include <type_traits>
17 
18 #include "test_macros.h"
19 
main(int,char **)20 int main(int, char**) {
21   static_assert(std::is_same<
22           std::experimental::filesystem::path,
23           std::experimental::filesystem::v1::path
24       >::value, "");
25 
26   return 0;
27 }
28