Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / test / std / iterators / iterator.primitives / iterator.basic / iterator.pass.cpp
blobc04f15e60b925bc347560c5c020427aa00d37e64
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 // <iterator>
11 // template<class Category, class T, class Distance = ptrdiff_t,
12 // class Pointer = T*, class Reference = T&>
13 // struct iterator
14 // {
15 // typedef T value_type;
16 // typedef Distance difference_type;
17 // typedef Pointer pointer;
18 // typedef Reference reference;
19 // typedef Category iterator_category;
20 // };
22 // ADDITIONAL_COMPILE_FLAGS: -D_LIBCPP_DISABLE_DEPRECATION_WARNINGS
24 #include <iterator>
25 #include <type_traits>
27 #include "test_macros.h"
29 struct A {};
31 template <class T>
32 void
33 test2()
35 typedef std::iterator<std::forward_iterator_tag, T> It;
36 static_assert((std::is_same<typename It::value_type, T>::value), "");
37 static_assert((std::is_same<typename It::difference_type, std::ptrdiff_t>::value), "");
38 static_assert((std::is_same<typename It::pointer, T*>::value), "");
39 static_assert((std::is_same<typename It::reference, T&>::value), "");
40 static_assert((std::is_same<typename It::iterator_category, std::forward_iterator_tag>::value), "");
43 template <class T>
44 void
45 test3()
47 typedef std::iterator<std::bidirectional_iterator_tag, T, short> It;
48 static_assert((std::is_same<typename It::value_type, T>::value), "");
49 static_assert((std::is_same<typename It::difference_type, short>::value), "");
50 static_assert((std::is_same<typename It::pointer, T*>::value), "");
51 static_assert((std::is_same<typename It::reference, T&>::value), "");
52 static_assert((std::is_same<typename It::iterator_category, std::bidirectional_iterator_tag>::value), "");
55 template <class T>
56 void
57 test4()
59 typedef std::iterator<std::random_access_iterator_tag, T, int, const T*> It;
60 static_assert((std::is_same<typename It::value_type, T>::value), "");
61 static_assert((std::is_same<typename It::difference_type, int>::value), "");
62 static_assert((std::is_same<typename It::pointer, const T*>::value), "");
63 static_assert((std::is_same<typename It::reference, T&>::value), "");
64 static_assert((std::is_same<typename It::iterator_category, std::random_access_iterator_tag>::value), "");
67 template <class T>
68 void
69 test5()
71 typedef std::iterator<std::input_iterator_tag, T, long, const T*, const T&> It;
72 static_assert((std::is_same<typename It::value_type, T>::value), "");
73 static_assert((std::is_same<typename It::difference_type, long>::value), "");
74 static_assert((std::is_same<typename It::pointer, const T*>::value), "");
75 static_assert((std::is_same<typename It::reference, const T&>::value), "");
76 static_assert((std::is_same<typename It::iterator_category, std::input_iterator_tag>::value), "");
79 int main(int, char**)
81 test2<A>();
82 test3<A>();
83 test4<A>();
84 test5<A>();
86 return 0;