annotate tests/tcrec.ur @ 2261:f81f1930c5d6

Fix SQL-parsing and declaration-ordering bugs.
author Ziv Scully <ziv@mit.edu>
date Wed, 30 Sep 2015 00:33:52 -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 = _