Remove not needed __builtin_expect due to malloc predictor.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / lambda-generic-conv3.C
blob8ec6a2092d7515cececc390ae1812817b7103116
1 // PR c++/70942
2 // { dg-do compile { target c++14 } }
4 int main()
6     int x = 0;
7     [](auto&& xv){
8         static_cast<decltype(xv)>(xv) = 1;
9     }(x);