// PR c++/52440 // { dg-do compile { target c++11 } } template struct V { typedef void type; }; template struct X { template static constexpr bool always_true() { return true; } template()>::type> X(U &&) {} }; int main() { X x(42); }