Skip to content

Commit 86317a3

Browse files
Add test forbidding extending tables within static arrays (#116)
Add test forbidding extending tables within static arrays
1 parent 288e638 commit 86317a3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
a = [{ b = 1 }]
2+
3+
# Cannot extend tables within static arrays
4+
# https://github.com/toml-lang/toml/issues/908
5+
[a.c]
6+
foo = 1

0 commit comments

Comments
 (0)