With a type defined as type BroTuple = distinct tuple[a, b, c: int]
, how can i:
Create a new instance (
Brotuple()
is telling meError: object constructor needs an object type
)Access to its fields (
proc example(br: BroTuple) = echo br.a
says:Error: undeclared field: 'a'
)