1 // PR c++/70634
2 
3 template < typename T >
foo()4 bool foo ()
5 {
6   const int i = sizeof (i) > 1 ? sizeof (T) : 0;
7   return i > 0;
8 }
9