saphyr-serde/parser/tests/yaml-test-suite/src/ZH7C.yaml
2024-10-12 16:15:46 +02:00

23 lines
299 B
YAML

---
- name: Anchors in Mapping
from: NimYAML tests
tags: anchor mapping
yaml: |
&a a: b
c: &d d
tree: |
+STR
+DOC
+MAP
=VAL &a :a
=VAL :b
=VAL :c
=VAL &d :d
-MAP
-DOC
-STR
json: |
{
"a": "b",
"c": "d"
}