From ab581e79aa3ee4cdbcb30b9c5a76ff4e40281365 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Tue, 26 Jul 2016 14:28:34 +0000 Subject: Implement LCM and GCD for Library Fundamentals. Reviewed as https://reviews.llvm.org/D21343. llvm-svn: 276750 --- .../numeric.ops.lcm/lcm.not_integral2.fail.cpp | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 libcxx/test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp (limited to 'libcxx/test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp') diff --git a/libcxx/test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp b/libcxx/test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp new file mode 100644 index 00000000000..25bcd51ade7 --- /dev/null +++ b/libcxx/test/std/experimental/numeric/numeric.ops/numeric.ops.lcm/lcm.not_integral2.fail.cpp @@ -0,0 +1,24 @@ +//===----------------------------------------------------------------------===// +// +// 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, c++11 +// + +// template +// constexpr common_type_t<_M,_N> lcm(_M __m, _N __n) + +// Remarks: If either M or N is not an integer type, the program is ill-formed. + +#include + + +int main() +{ + std::experimental::lcm(4, 6.0); +} -- cgit v1.2.3