annotate tests/concat.ur @ 2276:c05f9a5e0f0f

Progress on free paths, but consolidation seems to fail more with them.
author Ziv Scully <ziv@mit.edu>
date Mon, 09 Nov 2015 13:37:31 -0500
parents c7b9a33c26c8
children
rev   line source
adam@1303 1 functor Make(M : sig
adam@1303 2 con ts :: {(Type * Type)}
adam@1303 3 val tab : sql_table (map fst ts) []
adam@1303 4 val cols : $(map (fn p => p.2 -> string) ts)
adam@1303 5 end) = struct
adam@1303 6 end
adam@1303 7
adam@1303 8 table t : {A : string}
adam@1303 9
adam@1303 10 open Make(struct
adam@1303 11 val tab = t
adam@1303 12 val cols = {A = fn p : {B : string, C : string} => p.B ^ p.C}
adam@1303 13 end)