Lines Matching refs:test_bounded_ptr
50 test_bounded_ptr<From> const from(ptr1, array.begin(), array.end()); in tests()
51 test_bounded_ptr<To> to; in tests()
52 test_bounded_ptr<To>& ref = (to = from); in tests()
59 test_bounded_ptr<From> const from(ptr1, array.begin(), array.end()); in tests()
60 test_bounded_ptr<To> to(ptr2, array.begin(), array.end()); in tests()
63 test_bounded_ptr<To>& ref = (to = from); in tests()
70 test_bounded_ptr<From> const from = nullptr; in tests()
71 test_bounded_ptr<To> to; in tests()
72 test_bounded_ptr<To>& ref = (to = from); in tests()
91 test_bounded_ptr<From> const from(array.begin(), array.begin() + 1, array.end()); in tests()
92 test_bounded_ptr<To> to; in tests()
125 …static_assert(!std::is_assignable_v</*to*/ test_bounded_ptr<Derived>, /*from*/ test_bounded_ptr<Ba…
126 …static_assert(!std::is_assignable_v</*to*/ test_bounded_ptr<DerivedMultiple>, /*from*/ test_bounde…
127 …static_assert(!std::is_assignable_v</*to*/ test_bounded_ptr<DerivedMultiple>, /*from*/ test_bounde…
128 …static_assert(!std::is_assignable_v</*to*/ test_bounded_ptr<Base2>, /*from*/ test_bounded_ptr<Base…
131 …static_assert(!std::is_assignable_v</*to*/ test_bounded_ptr<Derived>, /*from*/ test_bounded_ptr<De…
134 …static_assert(!std::is_assignable_v</*to*/ test_bounded_ptr<char>, /*from*/ test_bounded_ptr<Deriv…
135 …static_assert(!std::is_assignable_v</*to*/ test_bounded_ptr<Unrelated>, /*from*/ test_bounded_ptr<…
136 …static_assert(!std::is_assignable_v</*to*/ test_bounded_ptr<Base2>, /*from*/ test_bounded_ptr<Base…
139 static_assert(!std::is_assignable_v</*to*/ test_bounded_ptr<Derived>, /*from*/ Derived*>);