It would be nice to be able to do updates of nested record fields in a cleaner way. For example:
data A = A with
b : B
data B = B with
c : Int
d : Text
-- What we currently have to do
setZero: A -> A
setZero a = a with
b = a.b with
c = 0
-- Nice to have syntax to do the same thing
betterSetZero : A -> A
betterSetZero a = a with b.c = 0