[Bug c++/56319] implicit copy constructor is not deleted when it is ill formed
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56319 --- Comment #2 from Jonathan Wakely 2013-02-14 12:36:56 UTC --- Reduced to remove dependency template struct tuple { T t; }; template tuple forward_as_tuple(Types&&... t) noexcept { return tuple{ static_cast(t)... }; }
[Bug c++/56319] implicit copy constructor is not deleted when it is ill formed
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56319 Jonathan Wakely changed: What|Removed |Added Severity|major |normal --- Comment #1 from Jo