OSDN Git Service

PR c++/9335
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / cond6.C
1 // PR c++/27801
2
3 template<int> int foo(int i)
4 {
5   return !( (1 && i) ? 0 : 1 );
6 }