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);
}

Reply via email to