any_of.clang_ice.cpp 498 B

12345678910111213141516171819
  1. // Copyright Louis Dionne 2013-2017
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
  4. #include <boost/hana/any_of.hpp>
  5. #include <boost/hana/tuple.hpp>
  6. #include <string>
  7. namespace hana = boost::hana;
  8. // This used to trigger an ICE on Clang
  9. struct Car { std::string name; };
  10. int main() {
  11. auto stuff = hana::make_tuple(Car{}, Car{}, Car{});
  12. hana::any_of(stuff, [](auto&&) { return true; });
  13. }