summaryrefslogtreecommitdiffstats
path: root/third_party/rust/ron/tests/preserve_sequence_ex2.ron
blob: 42c0e5a190881b63f9c147cdb22fe7e86492160e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(
    boolean: true,
    float: 8.2,
    map: {
        1: '1',
    },
    nested: (
        a: "Decode me!",
        b: 'z',
    ),
    tuple: (
        3,
        7,
    ),
)