Skip to content
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

[BUG] Crash in alias declaration with member call (UFCS) #509

Closed
JohelEGP opened this issue Jun 10, 2023 · 0 comments · Fixed by #506
Closed

[BUG] Crash in alias declaration with member call (UFCS) #509

JohelEGP opened this issue Jun 10, 2023 · 0 comments · Fixed by #506
Labels
bug Something isn't working

Comments

@JohelEGP
Copy link
Contributor

Title: Crash in alias declaration with member call (UFCS).

Minimal reproducer (https://cpp2.godbolt.org/z/h9hYjonTj):

f: (x: i32) -> i32 = x;
// Any of these triggers the bug.
a: <V: std::type_identity_t<decltype(0.f())>> type == i32;
// b: type == std::type_identity_t<decltype(0.f())>;
// c: <V: std::type_identity_t<decltype(0.f())>> _ == 0;
// d: _ == std::type_identity_t<decltype(0.f())>(0);
main: () = { }
Commands:
cppfront main.cpp2
clang++17 -std=c++23 -stdlib=libc++ -lc++abi -pedantic-errors -Wall -Wextra -Wconversion -I . main.cpp

Expected result: A well-formed program.

Actual result and error:

Compiler returned: 139
make[2]: *** [CMakeFiles/test.dir/build.make:75: _cppfront/main.cpp] Segmentation fault (core dumped)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant