[Bug c++/117658] Different ADL behavior between gcc and clang

2024-12-14 Thread nshead at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117658 Nathaniel Shead changed: What|Removed |Added See Also||https://gcc.gnu.org/bugzill

[Bug c++/117658] Different ADL behavior between gcc and clang

2024-11-23 Thread accelerator0099 at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117658 --- Comment #1 from accelerator0099 at gmail dot com --- main.cc: import std; import pr; int main() { std::printf("%d\n", pr::alias_printable>); } pr.cc: module; import std; namespace pr { struct alias_t {}; constexpr alias_t alias; t