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

Cannot parse fieldless structures #3018

Closed
kevaundray opened this issue Oct 6, 2023 · 2 comments · Fixed by #3021
Closed

Cannot parse fieldless structures #3018

kevaundray opened this issue Oct 6, 2023 · 2 comments · Fixed by #3021
Labels
bug Something isn't working

Comments

@kevaundray
Copy link
Collaborator

Aim

Parse the following code:

struct Foo;

Expected Behavior

Parse successfully.

Bug

error: Unexpected ;, expected one of <, {
┌─ main.nr:5:11

5 │ struct Foo;
│ -

To Reproduce

Installation Method

None

Nargo Version

No response

Additional Context

No response

Would you like to submit a PR for this Issue?

No

Support Needs

No response

@kevaundray kevaundray added the bug Something isn't working label Oct 6, 2023
@ghost
Copy link

ghost commented Oct 6, 2023

This includes creating structures through simply "let foo = Foo;"?

@ghost ghost mentioned this issue Oct 6, 2023
2 tasks
@kevaundray
Copy link
Collaborator Author

Forgot to reply -- this is not necessary for this issue, we can create another issue for it.

In rust,

struct Foo;

can be created by either doing:

let foo = Foo;
or
let foo = Foo{};

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
Archived in project
Development

Successfully merging a pull request may close this issue.

1 participant