diff options
Diffstat (limited to 'tests/data/toml-lang-compliance/valid/table/spec-extend-dotted-object-2.toml')
-rw-r--r-- | tests/data/toml-lang-compliance/valid/table/spec-extend-dotted-object-2.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/data/toml-lang-compliance/valid/table/spec-extend-dotted-object-2.toml b/tests/data/toml-lang-compliance/valid/table/spec-extend-dotted-object-2.toml new file mode 100644 index 0000000..dc94a8c --- /dev/null +++ b/tests/data/toml-lang-compliance/valid/table/spec-extend-dotted-object-2.toml @@ -0,0 +1,10 @@ +# VALID BUT DISCOURAGED + +apple.type = "fruit" +orange.type = "fruit" + +apple.skin = "thin" +orange.skin = "thick" + +apple.color = "red" +orange.color = "orange" |