summaryrefslogtreecommitdiffstats
path: root/test/std/experimental/filesystem/fs.filesystem.synopsis/file_time_type.pass.cpp
blob: 447fb46e840b902114591e7f5b9ebd6a6b636c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//===----------------------------------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

// UNSUPPORTED: c++98, c++03

// <experimental/filesystem>

// typedef TrivialClock file_time_type;

#include <experimental/filesystem>
#include <chrono>
#include <type_traits>

// system_clock is used because it meets the requirements of TrivialClock,
// and the resolution and range of system_clock should match the operating
// system's file time type.
typedef std::chrono::system_clock              ExpectedClock;
typedef std::chrono::time_point<ExpectedClock> ExpectedTimePoint;

int main() {
  static_assert(std::is_same<
          std::experimental::filesystem::file_time_type,
          ExpectedTimePoint
      >::value, "");
}