1 // PR c++/84333
2 // { dg-options -Wno-pedantic }
3 
foo()4 template<typename> int foo()
5 {
6   return sizeof(int) > 1 ? : 1;
7 }
8