1
2
3
4
5
6
7
8
# Duplicate JSON keys should always drop all but the latest value
builtins.fromJSON ''
  {
    "key": "one",
    "key": "two",
    "key": "three"
  }
''