You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
			
		
		
		
		
			
		
			
				
	
	
		
			50 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
			
		
		
	
	
			50 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
 | 
						|
// See https://llvm.org/LICENSE.txt for license information.
 | 
						|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
// UNSUPPORTED: c++98, c++03, c++11, c++14, c++17
 | 
						|
 | 
						|
// <chrono>
 | 
						|
// class weekday_indexed;
 | 
						|
 | 
						|
// constexpr bool operator==(const weekday_indexed& x, const weekday_indexed& y) noexcept;
 | 
						|
//   Returns: x.weekday() == y.weekday() && x.index() == y.index().
 | 
						|
// constexpr bool operator!=(const weekday_indexed& x, const weekday_indexed& y) noexcept;
 | 
						|
//   Returns: !(x == y)
 | 
						|
 | 
						|
#include <chrono>
 | 
						|
#include <type_traits>
 | 
						|
#include <cassert>
 | 
						|
 | 
						|
#include "test_macros.h"
 | 
						|
#include "test_comparisons.h"
 | 
						|
 | 
						|
int main(int, char**)
 | 
						|
{
 | 
						|
    using weekday         = std::chrono::weekday;
 | 
						|
    using weekday_indexed = std::chrono::weekday_indexed;
 | 
						|
 | 
						|
    AssertComparisons2AreNoexcept<weekday_indexed>();
 | 
						|
    AssertComparisons2ReturnBool<weekday_indexed>();
 | 
						|
 | 
						|
    static_assert( (weekday_indexed{} == weekday_indexed{}), "");
 | 
						|
    static_assert(!(weekday_indexed{} != weekday_indexed{}), "");
 | 
						|
 | 
						|
    static_assert(!(weekday_indexed{} == weekday_indexed{std::chrono::Tuesday, 1}), "");
 | 
						|
    static_assert( (weekday_indexed{} != weekday_indexed{std::chrono::Tuesday, 1}), "");
 | 
						|
 | 
						|
//  Some 'ok' values as well
 | 
						|
    static_assert( (weekday_indexed{weekday{1}, 2} == weekday_indexed{weekday{1}, 2}), "");
 | 
						|
    static_assert(!(weekday_indexed{weekday{1}, 2} != weekday_indexed{weekday{1}, 2}), "");
 | 
						|
 | 
						|
    static_assert(!(weekday_indexed{weekday{1}, 2} == weekday_indexed{weekday{1}, 1}), "");
 | 
						|
    static_assert( (weekday_indexed{weekday{1}, 2} != weekday_indexed{weekday{1}, 1}), "");
 | 
						|
    static_assert(!(weekday_indexed{weekday{1}, 2} == weekday_indexed{weekday{2}, 2}),  "");
 | 
						|
    static_assert( (weekday_indexed{weekday{1}, 2} != weekday_indexed{weekday{2}, 2}),  "");
 | 
						|
 | 
						|
  return 0;
 | 
						|
}
 |