fix shared_array output limit off by one

This commit is contained in:
Michael Davidsaver
2023-06-17 17:30:33 -07:00
parent 2a83e49ae7
commit f260fa2774
3 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -572,8 +572,8 @@ void testFormat()
" union choice.one int32_t = 1024\n"
" } scalar\n"
" struct {\n"
" int32_t[] i32 = {4}[1, -1, ...]\n"
" string[] s = {3}[\"one\", \"two\", ...]\n"
" int32_t[] i32 = {4}[1, ...]\n"
" string[] s = {3}[\"one\", ...]\n"
" any[] wildcard = {2}[\n"
" string = \"simple\"\n"
" ...\n"