https://gcc.gnu.org/bugzilla/show_bug.cgi?id=125184

--- Comment #3 from arunachalaeshwaran v r <avr5309 at gmail dot com> ---
I am not sure if the following error is due to the same reason, but it seems
that gcc 16+ does not properly handle using declarations from the std::meta
namespace.


```
#include <meta>

auto main() -> int {
  using std::meta::display_string_of; // Causes compilation error
  // using std::meta::meow; // More generally
}
```

I have tested this with identifier_of, access_context, and type_of as well. All
lead to the same error.

Compiler explorer link: https://godbolt.org/z/1fhe85bh6

Reply via email to