https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110816
--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
The testcase is:
struct f { void crash(); };
void bar(bool cond) {
f t;
if(cond)
t.crash();
//user(&t);
}
redi at gcc dot gnu.org via Gcc-bugs Wed, 26 Jul 2023 07:38:20 -0700
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110816
--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
The testcase is:
struct f { void crash(); };
void bar(bool cond) {
f t;
if(cond)
t.crash();
//user(&t);
}