https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115660
--- Comment #3 from vipcxj at 126 dot com ---
co_await signal->join(closer, {"root.room1"})
change to
auto rooms_arg = {std::string("root.room1")};
co_await signal->join(closer, std::move(rooms_arg));
error disappeared.
but
co_await signal->
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115660
--- Comment #2 from vipcxj at 126 dot com ---
Created attachment 58518
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=58518&action=edit
full preprocessed source
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115660
Bug ID: 115660
Summary: internal compiler error: in build_special_member_call,
at cp/call.cc:11085
Product: gcc
Version: 13.1.0
Status: UNCONFIRMED
Severity: n
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100611
--- Comment #10 from vipcxj at 126 dot com ---
The gcc version in build-essential for ubuntu22 is 11.4. The latest gcc in
ubuntu22 is 12.3. The latest gcc in ppa:ubuntu-toolchain-r/test is 13.1. To use
gcc 13.2.1, we have to compile it from sourc
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100611
vipcxj at 126 dot com changed:
What|Removed |Added
CC||vipcxj at 126 dot com
--- Commen