https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96946
Jonathan Wakely <redi at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |INVALID Status|UNCONFIRMED |RESOLVED --- Comment #3 from Jonathan Wakely <redi at gcc dot gnu.org> --- And this fails: #include <list> struct IReporterFactory { virtual ~IReporterFactory() = default; }; class ReporterFactory : public IReporterFactory {}; int main() { std::list<ReporterFactory> l(1); } This sanitizer is crap.