svoid test_structure_stringArrays() { S[] a = new { "hello", "world", null }; assertEqualsVerbose([[array S{"hello", "world", null}]], struct(a)); S[] a2 = restruct(a); assertEqualsVerbose(toList(a), toList(a2)); }