bloomberg/clang-p2996

Crash when instantiating template with template argument deduced to default value of global namespace

Closed this issue · 0 comments

The following seemingly extremely niche corner case produces a crash:

template <auto R = ^::> class S {};
S s;