diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-10-19 16:49:09 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-10-19 16:49:09 -0400 |
commit | 4f6178266ffe0bf5423878b46486b82c19a56810 (patch) | |
tree | c3e86b386b7e0207b21e8ad31910429d6fdd32b7 /demo | |
parent | f47af837f76a49a6b8bcca24ea1a1e1fcfefab02 (diff) |
Fix a nasty indent bug, found while working on listFun
Diffstat (limited to 'demo')
-rw-r--r-- | demo/listFun.ur | 5 | ||||
-rw-r--r-- | demo/listFun.urs | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/demo/listFun.ur b/demo/listFun.ur new file mode 100644 index 00000000..7a3459aa --- /dev/null +++ b/demo/listFun.ur @@ -0,0 +1,5 @@ +functor Make(M : sig + type t + end) = struct + val x = 6 +end diff --git a/demo/listFun.urs b/demo/listFun.urs new file mode 100644 index 00000000..ce4acafc --- /dev/null +++ b/demo/listFun.urs @@ -0,0 +1,6 @@ +functor Make(M : sig + type t + end) : sig + val main : unit -> transaction page +end + |