diff tests/crud1.ur @ 348:b88f4297167f

Improved inference of records of tuples
author Adam Chlipala <adamc@hcoop.net>
date Sat, 04 Oct 2008 19:56:59 -0400
parents 58eeeb3cbf40
children beb72f8a7218
line wrap: on
line diff
--- a/tests/crud1.ur	Sat Oct 04 16:15:13 2008 -0400
+++ b/tests/crud1.ur	Sat Oct 04 19:56:59 2008 -0400
@@ -1,13 +1,6 @@
 table t1 : {Id : int, A : int, B : string, C : float, D : bool}
 
 open Crud.Make(struct
-        con cols :: {(Type * Type)} = [
-                A = (int, string),
-                B = (string, string),
-                C = (float, string),
-                D = (bool, bool)
-        ]
-
         val tab = t1
 
         val title = "Crud1"