Skip to content

Commit

Permalink
Merge pull request #491 from FStarLang/franziskus/allow_array_field_a…
Browse files Browse the repository at this point in the history
…ssign

allow assigning arrays into fields
  • Loading branch information
msprotz authored Oct 14, 2024
2 parents 59a3a41 + 4137a2e commit 9de4665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Structs.ml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ let mk_is_struct files =

let will_be_lvalue e =
match e.node with
| EBound _ | EOpen _ | EBufRead _ ->
| EField _ | EBound _ | EOpen _ | EBufRead _ ->
true
| _ ->
false
Expand Down

0 comments on commit 9de4665

Please sign in to comment.