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

Lazy<'T> is incorrectly rewritten #335

Closed
isaacabraham opened this issue Oct 21, 2018 · 0 comments · Fixed by #348
Closed

Lazy<'T> is incorrectly rewritten #335

isaacabraham opened this issue Oct 21, 2018 · 0 comments · Fixed by #348

Comments

@isaacabraham
Copy link

let v = // <- Lazy "1"
    lazy
        1 |> string

gets rewritten as

let v : string Lazy = lazy 1 |> string

// v is now the string "Value is not created."

So precedence isn't being considered by the rewrite.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant