* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / overload / rvalue3.C
blob5a5d237429063c279ab291888fa4291ff6ae8f2d
1 // PR c++/50512
3 void foo (const char *const& s);
4 template<typename C> void foo (const C& x) { x.a; }
6 void f () {
7   foo ("abc");