summaryrefslogtreecommitdiffstats
path: root/vendor/basic-toml/tests/invalid/duplicate-key-table.toml
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/basic-toml/tests/invalid/duplicate-key-table.toml')
-rw-r--r--vendor/basic-toml/tests/invalid/duplicate-key-table.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/vendor/basic-toml/tests/invalid/duplicate-key-table.toml b/vendor/basic-toml/tests/invalid/duplicate-key-table.toml
new file mode 100644
index 000000000..cedf05fc5
--- /dev/null
+++ b/vendor/basic-toml/tests/invalid/duplicate-key-table.toml
@@ -0,0 +1,5 @@
+[fruit]
+type = "apple"
+
+[fruit.type]
+apple = "yes"