Closed
Description
Bugzilla Link | 46619 |
Version | trunk |
OS | All |
Reporter | LLVM Bugzilla Contributor |
CC | @zygoloid |
Extended Description
Godbolt shows a clang 10 stacktrace for the following code:
https://godbolt.org/z/8az9zC
I wanted to build a template helper to transform a std::variant of the form
std::variant<type_tag<A>, type_tag<B>, ...>
into:
std::variant<A, B, ...>
.