Create symbols for struct fields before record update

This commit is contained in:
JRI98 2024-02-02 23:49:48 +00:00
parent 2347c3f667
commit ad6900514b
No known key found for this signature in database
GPG key ID: F83B29916FF13F24
4 changed files with 71 additions and 40 deletions

View file

@ -3463,3 +3463,14 @@ fn issue_6196() {
"#
)
}
#[mono_test]
fn issue_5513() {
indoc!(
r"
f = \state ->
{ state & a: state.b }
f { a: 0, b: 0 }
"
)
}