summaryrefslogtreecommitdiff
path: root/tests/cancel.ur
blob: 9edb15af2e77f59e6cfe3bdcb7928711cf659cc0 (plain)
1
2
3
4
5
6
7
type t = {A : int, B : float, C : string}
type u = {A : int, C : string, D : bool}

fun f (x : t) = x
fun g (x : u) = f x

fun h [ts] [ts ~ [A]] (r : $([A = int] ++ ts)) : $([A = int, B = float] ++ ts) = r