-
Notifications
You must be signed in to change notification settings - Fork 13.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clang assert: "Assertion `getDepthAndIndex(NewParam).first == 0 && "Unexpected template parameter depth"' failed." #128691
Comments
@llvm/issue-subscribers-clang-frontend Author: Haojian Wu (hokein)
https://godbolt.org/z/TPjf1YYY3
A regression from #111143
|
cc @zyn0217 |
Which suggests the NewDepth we've calculated is wrong. |
So... the constructor for which we're trying to synthesize a deduction guide comes from the explicit specialization (We should have been doing this wrong prior to 20, but it didn't crash because it called |
…epth (#128704) There were some cases where we computed incorrect template parameter depths for synthesized CTAD, invalid as they might be, we still shouldn't crash anyway. Technically the only scenario in which the inner function template's depth is 0 is when it lives within an explicit template specialization, where the template parameter list is empty. Fixes #128691
…parameter depth (#128704) There were some cases where we computed incorrect template parameter depths for synthesized CTAD, invalid as they might be, we still shouldn't crash anyway. Technically the only scenario in which the inner function template's depth is 0 is when it lives within an explicit template specialization, where the template parameter list is empty. Fixes llvm/llvm-project#128691
https://godbolt.org/z/TPjf1YYY3
A regression from #111143
The text was updated successfully, but these errors were encountered: