PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr58707.C
blob12f2e309788ebe0f30ab5a97de10b9aa6495a3b1
1 // PR c++/58707
2 // { dg-do compile { target c++11 } }
4 template<int i> class TC { };
5 constexpr int foo[] = { 42 };
6 TC<foo[0 > 1]> bar;