-
-
Notifications
You must be signed in to change notification settings - Fork 320
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
pizza pipe not working #7530
Labels
P-high
High priority/frequency
Comments
Link to zulip discussion: https://roc.zulipchat.com/#narrow/channel/463736-bugs/topic/too.20few.20args/near/494452838 |
The desugared version of module [something]
something = |_|
["hello"] |> List.first()? Is:
The desugared version of: module [something]
something = |_|
["hello"] |> List.first() Is:
|
Recommended workaround: module [something]
something = |_|
["hello"] |> List.first()? To: module [something]
something = |_|
List.first(["hello"]) |
Desugaring was changed in #7548 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Error message:
This version does work:
If we look at the desugared version we'll probably be able to make sense of this.
The text was updated successfully, but these errors were encountered: