// PR c++/89212 // { dg-do compile { target c++11 } } template using enable_if_t = int; template struct p { template> p(T) { } p() = default; }; struct A { p i = 1; void bar(); p j; };