Daniel Ziltener
91ea498688
git-subtree-dir: tomlc99 git-subtree-mainline:f2ccebdd2d
git-subtree-split:5221b3d3d6
14 lines
242 B
TOML
14 lines
242 B
TOML
# INVALID TOML DOC
|
|
[[fruits]]
|
|
name = "apple"
|
|
|
|
[[fruits.varieties]]
|
|
name = "red delicious"
|
|
|
|
[fruits.physical]
|
|
color = "red"
|
|
shape = "round"
|
|
|
|
# INVALID: This array of tables conflicts with the previous table
|
|
[[fruits.physical]]
|
|
color = "green"
|