(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
stmtexpr1.C
// PR c++/17404
// { dg-do compile }
// { dg-options "" }

template <int> void foo ()
{
  __builtin_expect  (({0;}), 1);
}
 
template void foo<1> ();