// PR c++/66758 // { dg-do compile { target c++17 } } // { dg-options "-fconcepts" } template concept bool Constructible = requires(Args&&...args) { T{ ((Args&&)(args))... }; new T{((Args&&)(args))...}; }; template struct A { }; A a;