* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / init / reference3.C
blob52ae935ca795781f1b83a73300432ca4ca2e0cc1
1 // { dg-do compile }
2 // { dg-additional-options "-Wno-return-type" }
3 // This code used to be accepted but it is invalid as there is no
4 // value initialization of a reference type.
5 // PR c++/36695
7 template <typename T>
8 T f()
10   T a = T();  // { dg-error "value-initialization of reference" }
13 int &a = f<int&>(); // { dg-message "required from here" }