1 // PR c++/58707
2 // { dg-do compile { target c++11 } }
3 
4 template<int i> class TC { };
5 constexpr int foo[] = { 42 };
6 TC<foo[0 > 1]> bar;
7