[Bug c++/117658] Different ADL behavior between gcc and clang
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
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