...

Text file src/github.com/BurntSushi/toml/internal/toml-test/tests/valid/inline-table/nest.toml

Documentation: github.com/BurntSushi/toml/internal/toml-test/tests/valid/inline-table

     1tbl_tbl_empty = { tbl_0 = {} }
     2tbl_tbl_val   = { tbl_1 = { one = 1 } }
     3tbl_arr_tbl   = { arr_tbl = [ { one = 1 } ] }
     4arr_tbl_tbl   = [ { tbl = { one = 1 } } ]
     5
     6# Array-of-array-of-table is interesting because it can only
     7# be represented in inline form.
     8arr_arr_tbl_empty = [ [ {} ] ]
     9arr_arr_tbl_val = [ [ { one = 1 } ] ]
    10arr_arr_tbls  = [ [ { one = 1 }, { two = 2 } ] ]

View as plain text