You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by hbina December 11, 2021
I have wasted a disgusting amount of time only to realize that row is a reserved keyword. I basically had something like this compiled without warning, which does not even make any sense because row here is shadowed by the reserved name anyways.
for row in bson.inner : HorizontalBox {
key := Text {
text: row.key;
}
value := Text {
text: row.value;
}
}
```</div>
The text was updated successfully, but these errors were encountered:
Discussed in #738
Originally posted by hbina December 11, 2021
I have wasted a disgusting amount of time only to realize that
row
is a reserved keyword. I basically had something like this compiled without warning, which does not even make any sense becauserow
here is shadowed by the reserved name anyways.The text was updated successfully, but these errors were encountered: