From 08f3ae92d3935559a5134bc5da900d3784142bf3 Mon Sep 17 00:00:00 2001 From: Peter Date: Sun, 11 Oct 2020 21:33:23 +0200 Subject: fix(std): Parsing inline arrays of inline tables in toml (#7902) --- std/encoding/testdata/inlineArrayOfInlineTable.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 std/encoding/testdata/inlineArrayOfInlineTable.toml (limited to 'std/encoding/testdata') diff --git a/std/encoding/testdata/inlineArrayOfInlineTable.toml b/std/encoding/testdata/inlineArrayOfInlineTable.toml new file mode 100644 index 000000000..a440ff927 --- /dev/null +++ b/std/encoding/testdata/inlineArrayOfInlineTable.toml @@ -0,0 +1,8 @@ +[inlineArray] +string = [ {var = "a string"} ] + +my_points = [ { x = 1, y = 2, z = 3 }, { x = 7, y = 8, z = 9 }, { x = 2, y = 4, z = 8 } ] + +points = [ { x = 1, y = 2, z = 3 }, + { x = 7, y = 8, z = 9 }, + { x = 2, y = 4, z = 8 } ] \ No newline at end of file -- cgit v1.2.3