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
Parse the following code:
struct Foo;
Parse successfully.
error: Unexpected ;, expected one of <, { ┌─ main.nr:5:11 │ 5 │ struct Foo; │ - │
None
No response
No
The text was updated successfully, but these errors were encountered:
This includes creating structures through simply "let foo = Foo;"?
Sorry, something went wrong.
Forgot to reply -- this is not necessary for this issue, we can create another issue for it.
In rust,
can be created by either doing:
let foo = Foo; or let foo = Foo{};
let foo = Foo;
let foo = Foo{};
Successfully merging a pull request may close this issue.
Aim
Parse the following code:
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
The text was updated successfully, but these errors were encountered: