OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / stmtexpr1.C
1 // PR c++/17404
2 // { dg-do compile }
3 // { dg-options "" }
4
5 template <int> void foo ()
6 {
7   __builtin_expect  (({0;}), 1);
8 }
9  
10 template void foo<1> ();