• Home
  • History
  • Annotate
  • 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 // #define __cpp_lib_experimental_filesystem 201406L
15 
16 #include <experimental/filesystem>
17 
18 #ifndef __cpp_lib_experimental_filesystem
19 #error Filesystem feature test macro is not defined  (__cpp_lib_experimental_filesystem)
20 #elif __cpp_lib_experimental_filesystem != 201406L
21 #error Filesystem feature test macro has an incorrect value (__cpp_lib_experimental_filesystem)
22 #endif
23 
main()24 int main() { }
25