# Expressions that both Go expr v1.17.8 and expr.rs must reject.
true and 1
1 ? 2 : 3
reduce([], #acc + #)
repeat("x", -1)
sort([1, "2"])
sort([1, "2", 3])
b"\u0041"
b"\x0"
b"\400"
if 1 { 2 } else { 3 }
duration("invalid")
date("invalid")
timezone("Not/AZone")
date("2023-08-14").Month() == 8
date("2023-08-14").Weekday() == 1
date("2023-08-14").Month() >= 6
date("2023-08-14").Month() < date("2023-09-14").Month()
1 % 0
duration("1h") / 2
duration("1h") / duration("30m")
-duration("1h")
duration("1h").Seconds(1)
fromPairs([[[1], "value"]])
groupBy([[1]], #)
toJSON(fromPairs([["key", "value"]]))
fromPairs([["a", 1]]) == {a: 1}
fromPairs([[1, "one"]]) contains 1
date("2023-08-14").AddDate(1, 2)
date("2023-08-14").Before("2023-08-15")
duration("1h").Round(1)