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