//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // type_traits // extension // template struct __has_operator_addressof #include #ifndef _LIBCPP_HAS_NO_CONSTEXPR struct A { }; struct B { constexpr B* operator&() const; }; struct D; struct C { template D operator,(U&&); }; struct E { constexpr C operator&() const; }; #endif // _LIBCPP_HAS_NO_CONSTEXPR int main() { #ifndef _LIBCPP_HAS_NO_CONSTEXPR static_assert(std::__has_operator_addressof::value == false, ""); static_assert(std::__has_operator_addressof::value == false, ""); static_assert(std::__has_operator_addressof::value == true, ""); static_assert(std::__has_operator_addressof::value == true, ""); #endif // _LIBCPP_HAS_NO_CONSTEXPR }