-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Clang errors out after parsing out a typeid of and indexed parameter pack. #93650
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
Comments
@llvm/issue-subscribers-clang-frontend Author: Ahmed S. Lilah (AhmedLilah)
Version: x86-64Trunk
Platform: www.godblot.org
Source #include <print>
auto function(auto ... inputArgs) {
return typeid(inputArgs...[0]).name();
}
auto main() -> int {
std::println("{}", function(5, 5.0, "char", 'c'));
return 0;
} Crash backtrace
|
In |
Hi! This issue may be a good introductory issue for people new to working on LLVM. If you would like to work on this issue, your first steps are:
If you have any further questions about this issue, don't hesitate to ask via a comment in the thread below. |
@llvm/issue-subscribers-good-first-issue Author: Ahmed S. Lilah (AhmedLilah)
Version: x86-64Trunk
Platform: www.godblot.org
Source #include <print>
auto function(auto ... inputArgs) {
return typeid(inputArgs...[0]).name();
}
auto main() -> int {
std::println("{}", function(5, 5.0, "char", 'c'));
return 0;
} Crash backtrace
|
Hi there, I want to start contributing to the project. Can you give me a heads up on how to start and how to get started fixing this bug? And how do I get it assigned to me? |
You should check out our documentation: https://clang.llvm.org/get_started.html llvm-project/clang/lib/AST/Expr.cpp Lines 3624 to 3626 in 4bce270
|
Version: x86-64Trunk
Platform: www.godblot.org
Source
Crash backtrace
The text was updated successfully, but these errors were encountered: