diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-10-23 17:35:10 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-10-23 17:35:10 -0400 |
commit | da7b52ba28367cf2b31476e77e1a26e53e4765e4 (patch) | |
tree | 5de8de2f16499f80ffe6cd1cb7bc2afb6ca851d4 /demo/refFun.urs | |
parent | a2495d384c7747a079cb0f4bc31f44d626391068 (diff) |
Fix bug with bringing functor argument instances into scope; Ref demo, minus prose
Diffstat (limited to 'demo/refFun.urs')
-rw-r--r-- | demo/refFun.urs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/demo/refFun.urs b/demo/refFun.urs new file mode 100644 index 00000000..bcecc8d3 --- /dev/null +++ b/demo/refFun.urs @@ -0,0 +1,10 @@ +functor Make(M : sig + type data + val inj : sql_injectable data + end) : sig + type ref + val new : M.data -> transaction ref + val read : ref -> transaction M.data + val write : ref -> M.data -> transaction unit + val delete : ref -> transaction unit +end |