//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <chrono>
// duration
// Period shall be a specialization of ratio, diagnostic required.
#include<chrono>template<intN,intD=1>classRatio{public:staticconstintnum=N;staticconstintden=D;};intmain(){typedefstd::chrono::duration<int,Ratio<1>>D;Dd;}