* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / init / copy6.C
blob136dc78302690f12d6944bf453d8b603c2e6f612
1 // PR c++/11878
3 struct A
5     virtual ~A();
6 };
8 template<typename T> struct B
10     T t;
13 void foo() { throw B<A>().t; }