The following TOML: ```toml foo = [ { x = "'" } ] ``` Gets parsed as: ```py {'foo': []} ``` I cannot seem to reduce this example any further - the following all parse as I expect: ```toml foo = [ "'" ] bar = { x = "'" } [[baz]] x = "'" ```