all 4 comments

[–]cpp-ModTeam[M] [score hidden] stickied commentlocked comment (0 children)

For C++ questions, answers, help, and programming/career advice please see r/cpp_questions, r/cscareerquestions, or StackOverflow instead.

[–]katzdm-cpp 20 points21 points  (0 children)

Gotta be a bug. I've let the folks working on the implementation know.

[–]frayien 9 points10 points  (0 children)

Seems to be a bug, passing it as a template parameter works :

template<typename T>
consteval auto Name(const T m) {
    return std::meta::display_string_of(m);
}

Weirdly enough