On 8/26/2019 7:47 AM, Kagamin wrote: > struct S { int a, b, c, d = 7; } > S w = { c:1, a:1, 3 }; > > I don't even know if this result is contrived. Maybe it's trivial? It initializes to: c = 1 a = 1 b = 3 d = 7