aboutsummaryrefslogtreecommitdiff
path: root/src/test/invalid/table-array-implicit.toml
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-06-20 17:01:38 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-20 17:01:38 -0700
commit11115f13a3499420cd09b745a298ef071755b24b (patch)
treeea24118086e8a1f814c4cd9b2f617c93fe107754 /src/test/invalid/table-array-implicit.toml
downloadmilf-rs-11115f13a3499420cd09b745a298ef071755b24b.tar.gz
milf-rs-11115f13a3499420cd09b745a298ef071755b24b.zip
Initial commit
Diffstat (limited to 'src/test/invalid/table-array-implicit.toml')
-rw-r--r--src/test/invalid/table-array-implicit.toml14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/invalid/table-array-implicit.toml b/src/test/invalid/table-array-implicit.toml
new file mode 100644
index 0000000..05f2507
--- /dev/null
+++ b/src/test/invalid/table-array-implicit.toml
@@ -0,0 +1,14 @@
+# This test is a bit tricky. It should fail because the first use of
+# `[[albums.songs]]` without first declaring `albums` implies that `albums`
+# must be a table. The alternative would be quite weird. Namely, it wouldn't
+# comply with the TOML spec: "Each double-bracketed sub-table will belong to
+# the most *recently* defined table element *above* it."
+#
+# This is in contrast to the *valid* test, table-array-implicit where
+# `[[albums.songs]]` works by itself, so long as `[[albums]]` isn't declared
+# later. (Although, `[albums]` could be.)
+[[albums.songs]]
+name = "Glory Days"
+
+[[albums]]
+name = "Born in the USA"