roc/test_list_messages.txt
2025-06-28 22:26:10 -04:00

11 lines
389 B
Text

List with 2 elements, both incompatible:
[1, "hello"]
→ "The two elements in this list have incompatible types"
List with 3+ elements, first two incompatible:
[1, "hello", 3.14]
→ "The first two elements in this list have incompatible types"
List with 3+ elements, later elements incompatible:
[1, 2, "hello"]
→ "The second and third elements in this list have incompatible types"