We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Issue originated with this code: https://godbolt.org/z/G7zshr3fY It seems parenthesized explicit type conversion with auto is parsed incorrectly: https://godbolt.org/z/PT8KqYr43
auto
auto fun(int x) { return (auto(x)); }
<source>:3:15: error: type-id cannot have a name return (auto(x)); ^ <source>:3:18: error: expected expression return (auto(x));
The text was updated successfully, but these errors were encountered:
@llvm/issue-subscribers-clang-frontend
Sorry, something went wrong.
Should be fixed by @cor3ntin's https://reviews.llvm.org/D149276
auto(x)
This was fixed!
No branches or pull requests
Issue originated with this code: https://godbolt.org/z/G7zshr3fY
It seems parenthesized explicit type conversion with
auto
is parsed incorrectly: https://godbolt.org/z/PT8KqYr43The text was updated successfully, but these errors were encountered: