[Bug c++/111647] g++ accepts different c++ on -fchecking= anf checking=2

2023-10-02 Thread ppalka at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111647 Patrick Palka changed: What|Removed |Added Keywords||accepts-invalid

[Bug c++/111647] g++ accepts different c++ on -fchecking= anf checking=2

2023-09-30 Thread slyfox at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111647 --- Comment #1 from Sergei Trofimovich --- More realistic example extracted from gcc's poly_int: // $ cat rtl-tests.cc template struct poly_int { template constexpr poly_int (const Cs &... cs) : coeffs { cs... } {} int coeffs[N]; };