3 May
2024
3 May
'24
11:16
https://bugzilla.suse.com/show_bug.cgi?id=1223820 https://bugzilla.suse.com/show_bug.cgi?id=1223820#c3 --- Comment #3 from Richard Biener <rguenther@suse.com> --- Shorter: #include <string> #include <initializer_list> void __attribute__((noipa)) tata(std::initializer_list<std::string> init) { throw 1; } int main() { try { tata({ "0123456789012346" }); // using shorter string or "..."s works } catch (...) { } } -- You are receiving this mail because: You are on the CC list for the bug.