summaryrefslogtreecommitdiff
path: root/demo/treeFun.urs
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-04-13 08:44:32 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-04-13 08:44:32 -0400
commitf03c559d279c0026be2aa781fdef26ea9d5298b5 (patch)
treefbe06b63994c3d33b18a451146a7b57111e07359 /demo/treeFun.urs
parent9bcd129c579d210c2b45e93101f9ed1c6d3e9fe7 (diff)
Simplify type class requirement for tree demo
Diffstat (limited to 'demo/treeFun.urs')
-rw-r--r--demo/treeFun.urs3
1 files changed, 1 insertions, 2 deletions
diff --git a/demo/treeFun.urs b/demo/treeFun.urs
index 64a14f4f..323c2e5a 100644
--- a/demo/treeFun.urs
+++ b/demo/treeFun.urs
@@ -6,8 +6,7 @@ functor Make(M : sig
constraint [id] ~ [parent]
constraint [id, parent] ~ cols
- val key_inj : sql_injectable key
- val option_key_inj : sql_injectable (option key)
+ val key_inj : sql_injectable_prim key
table tab : ([id = key, parent = option key] ++ cols)
end) : sig