summaryrefslogtreecommitdiff
path: root/tests/tcrec.ur
blob: 3d3e6e645c25deaf1b54bbf2fe8665a758bb2307 (plain)
1
2
3
4
5
type r1 = {A : string, B : string}
type r2 = {B : string, A : string}

val show_r1 : show r1 = mkShow (fn r => r.A ^ "+" ^ r.B)
val show_r2 : show r2 = _