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] Return statement of unnamed declaration fails #532

Closed
JohelEGP opened this issue Jul 1, 2023 · 0 comments · Fixed by #479
Closed

[BUG] Return statement of unnamed declaration fails #532

JohelEGP opened this issue Jul 1, 2023 · 0 comments · Fixed by #479
Labels
bug Something isn't working

Comments

@JohelEGP
Copy link
Contributor

JohelEGP commented Jul 1, 2023

Title: Return statement of unnamed declaration fails.

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

main: () -> int = { return :i32 = 0; }
Commands:
cppfront main.cpp2
clang++17 -std=c++23 -stdlib=libc++ -lc++abi -pedantic-errors -Wall -Wextra -Wconversion -I . main.cpp

Expected result:

Same as

main: () -> int = { return (:i32 = 0); }

Actual result and error:

<source>...

example.cpp2(1,38): error: missing ; after return (at '}')
example.cpp2: error: unexpected end of source file

Compiler returned: 1
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