[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / libcxx / test / std / time / time.point / duration.compile.fail.cpp
blob6461eb3d96f5f7211a7830994d771e90a1000e36
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 //===----------------------------------------------------------------------===//
9 // <chrono>
11 // time_point
13 // Duration shall be an instance of duration.
15 #include <chrono>
17 int main(int, char**)
19 typedef std::chrono::time_point<std::chrono::system_clock, int> T;
20 T t;
22 return 0;