[Bug ld/28973] Improve error message for missing vtable
https://sourceware.org/bugzilla/show_bug.cgi?id=28973 Eyal Rozenberg changed: What|Removed |Added Resolution|NOTABUG |--- Status|RESOLVED
[Bug ld/28973] New: Improve error message for missing vtable
: ld Assignee: unassigned at sourceware dot org Reporter: eyalroz1 at gmx dot com Target Milestone: --- Related GCC bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42540 If we write the following program: ``` struct A { virtual void foo() { } }; struct B : A { void