// PR c++/55992 // { dg-do compile { target c++11 } } template struct A {}; template struct test { static constexpr unsigned pole(unsigned P) { return P>MaxP? MaxP:P; } template using my_array = A; template void do_something(my_array

const&, my_array

); };