//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <chrono>
// duration
// duration operator-() const;
#include<chrono>#include<cassert>intmain(){conststd::chrono::minutesm(3);std::chrono::minutesm2=-m;assert(m2.count()==-m.count());}