* MAINTAINERS: Add a note that maintainership also includes web
[official-gcc.git] / gcc / testsuite / g++.dg / asan / pr79783.C
blob939f60b2819f38c64e4bc6ebf3f02c78a987a04a
1 // PR sanitizer/79783
2 // { dg-options "-fno-tree-dce" }
4 struct A
6   static void foo(const char&) {}
7 };
9 struct B
11   B() { A::foo(char()); }
14 struct C
16   virtual void bar() const { B b; }
19 C c;