1 // PR c++/28337
2 
foo()3 template <int> void foo()
4 {
5   (0 ? "" : "X") + 1;
6 }
7 
8