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
typeFoo=object
a, b: intlet x =Foo(
b: foo()
a: bar())
gets rewritten to:
Foo(
a: bar()
b: foo())
in an attempt to set every field. It should probably use the order of the given fields, then set the defaults of the remaining fields (or do this first).