-
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
Forward-declared consteval function is rejected for use in a template parameter's default value #62224
Comments
@llvm/issue-subscribers-clang-frontend |
On second thought, maybe it is not DR2631: https://godbolt.org/z/5fr9PEW99 constexpr int g();
consteval int f() {
return g();
}
int k(int x = f()) { // error: constexpr evaluation of undefined function g
return x;
}
constexpr int g() {
return 42;
}
int main() {
return k();
} Although it looks related. |
@cor3ntin , if you don't have enough time for this bug ATM and don't mind, I can take a look. |
@Fznamznon If you have time sure, that sounds great! Thanks |
Clang evaluates and checks constant expression in default non-type template argument once it is met by parser, gcc seems to be doing that only if the default value is required. The illustrating example https://godbolt.org/z/vKofvWees
Should compile fine? gcc doesn't compile this. https://godbolt.org/z/3o3974fjT |
@Fznamznon I think GCC is correct here. |
It may be worth confirming with WG21 though. |
GCC test:
g++.dg/cpp2a/consteval-defarg3.C
Diagnostic:
Repro: https://godbolt.org/z/dPPE5TTnr
The text was updated successfully, but these errors were encountered: