blob: c9f89b322ec6d7618acd481a9b8d825831a969f2 [file] [log] [blame]
Eric Fiselierc7979582016-06-17 19:46:40 +00001//===----------------------------------------------------------------------===//
2//
Chandler Carruth57b08b02019-01-19 10:56:40 +00003// 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
Eric Fiselierc7979582016-06-17 19:46:40 +00006//
7//===----------------------------------------------------------------------===//
8
9// UNSUPPORTED: c++98, c++03
10
11// <experimental/filesystem>
12
13// namespace std::experimental::filesystem::v1
14
15#include <experimental/filesystem>
16#include <type_traits>
17
Marshall Clow7fc6a552019-05-31 18:35:30 +000018#include "test_macros.h"
19
JF Bastien2df59c52019-02-04 20:31:13 +000020int main(int, char**) {
Eric Fiselierc7979582016-06-17 19:46:40 +000021 static_assert(std::is_same<
22 std::experimental::filesystem::path,
23 std::experimental::filesystem::v1::path
24 >::value, "");
JF Bastien2df59c52019-02-04 20:31:13 +000025
26 return 0;
Eric Fiselierc7979582016-06-17 19:46:40 +000027}