bug83.cc 787 B

123456789101112131415161718192021222324
  1. // -*- mode: c++; coding: utf-8 -*-
  2. // ra-ra/box - Triggers gcc 8.3 ICE: in verify_ctor_sanity, at cp/constexpr.c:2805
  3. // (c) Daniel Llorens - 2016-2017, 2019
  4. // This library is free software; you can redistribute it and/or modify it under
  5. // the terms of the GNU Lesser General Public License as published by the Free
  6. // Software Foundation; either version 3 of the License, or (at your option) any
  7. // later version.
  8. // reduced from bench/bench-stencil2.cc.
  9. // Bisected to edad804087b3eb0d2c4b2b423aacc4341b7a6736.
  10. // Patched by removing constexpr in big.hh: View(): p(nullptr) {}.
  11. #include <iostream>
  12. #include <iomanip>
  13. #include <random>
  14. #include "ra/big.hh"
  15. int main()
  16. {
  17. ra::Big<double, 2> A({4, 4}, 0.);
  18. A = ra::expr([](auto && a) { return a(0, 0); }, ra::iter<2>(A));
  19. }