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
If a JSON object contains the field "3ED", it will be translated to the unexported field _ED. If the object contains both "3ED" and "4ED", both will be translated to unexported fields named _ED (which will fail to compile with the error message duplicate field _ED).
The text was updated successfully, but these errors were encountered:
Just discovered this quirk:
If a JSON object contains the field
"3ED"
, it will be translated to the unexported field_ED
. If the object contains both"3ED"
and"4ED"
, both will be translated to unexported fields named_ED
(which will fail to compile with the error messageduplicate field _ED
).The text was updated successfully, but these errors were encountered: