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
fields with fixed values have it properly applied even if there's only 1 non-fixed variant e.g.:
group_choice = [
; @name these
foo //
; if there is only one non-constant field in the inlined group then that will be inlined in the enum
; @name are
0, x: uint //
; but if there are multiple then a new struct will be generated from this variant
; @name also
1, x: uint, y: text //
; basic groups can be embedded into group choices, taking on the format of the outer group
; @name nameable
basic
]
has the Are variant properly have its named applied despite it inlining the uint field.
Works (first variant named
These
, 4thNameable
):First variant does not get named
These
, 4th notNameable
:foo
is an array group andbasic
a basic group so that shouldn't be relevant.The text was updated successfully, but these errors were encountered: