https://gcc.gnu.org/bugzilla/show_bug.cgi?id=124834
--- Comment #9 from Halalaluyafail3 <luigighiron at gmail dot com> ---
Another example of this is:
struct D{
virtual void qux()final=0;
};
void call(D&d){
d.qux();
}
int main(){}
luigighiron at gmail dot com via Gcc-bugs Mon, 06 Jul 2026 11:52:56 -0700
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=124834
--- Comment #9 from Halalaluyafail3 <luigighiron at gmail dot com> ---
Another example of this is:
struct D{
virtual void qux()final=0;
};
void call(D&d){
d.qux();
}
int main(){}