toml-lang / toml-test

A language agnostic test suite for TOML parsers.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add test forbidding extending tables in inline arrays

brandonchinn178 opened this issue · comments

There should be a test that this is invalid:

a = [{ b = 1 }]
[a.c]
foo = 1

toml-lang/toml#908