• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 // UNSUPPORTED: c++98, c++03
11 
12 // <experimental/filesystem>
13 
14 // class path
15 
16 // const string_type& native() const noexcept;
17 
18 #include <experimental/filesystem>
19 #include <type_traits>
20 #include <cassert>
21 
22 #include "test_macros.h"
23 #include "filesystem_test_helper.hpp"
24 
25 namespace fs = std::experimental::filesystem;
26 
main()27 int main()
28 {
29   using namespace fs;
30   const char* const value = "hello world";
31   { // Check signature
32     path p(value);
33     ASSERT_SAME_TYPE(path::string_type const&, decltype(p.native()));
34     ASSERT_NOEXCEPT(p.native());
35   }
36   { // native() is tested elsewhere
37     path p(value);
38     assert(p.native() == value);
39   }
40 }
41