diff options
Diffstat (limited to 'tests/data/toml-lang-compliance/valid/array/spec-array-of-tables-2.toml')
-rw-r--r-- | tests/data/toml-lang-compliance/valid/array/spec-array-of-tables-2.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/data/toml-lang-compliance/valid/array/spec-array-of-tables-2.toml b/tests/data/toml-lang-compliance/valid/array/spec-array-of-tables-2.toml new file mode 100644 index 0000000..ced9e2a --- /dev/null +++ b/tests/data/toml-lang-compliance/valid/array/spec-array-of-tables-2.toml @@ -0,0 +1,18 @@ +[[fruit]] + name = "apple" + + [fruit.physical] + color = "red" + shape = "round" + + [[fruit.variety]] + name = "red delicious" + + [[fruit.variety]] + name = "granny smith" + +[[fruit]] + name = "banana" + + [[fruit.variety]] + name = "plantain" |