annotate tests/tcrec.ur @ 2257:28a541bd2d23

Use referenced (rather than all) free variables as keys for pure caches.
author Ziv Scully <ziv@mit.edu>
date Sun, 27 Sep 2015 14:46:12 -0400
parents 287604b4a08d
children
rev   line source
adam@1575 1 type r1 = {A : string, B : string}
adam@1575 2 type r2 = {B : string, A : string}
adam@1575 3
adam@1575 4 val show_r1 : show r1 = mkShow (fn r => r.A ^ "+" ^ r.B)
adam@1575 5 val show_r2 : show r2 = _