From 447b60afccc89ef18d8f92a260dd1fcdf735898e Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Sun, 31 Aug 2008 08:32:18 -0400 Subject: Laconic -> Ur --- tests/open_functor.ur | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/open_functor.ur (limited to 'tests/open_functor.ur') diff --git a/tests/open_functor.ur b/tests/open_functor.ur new file mode 100644 index 00000000..36525a05 --- /dev/null +++ b/tests/open_functor.ur @@ -0,0 +1,16 @@ +signature S = sig + type t + val x : t +end + +functor F (M : S) : S where type t = M.t = struct + type t = M.t + val x = M.x +end + +structure M = F(struct + type t = int + val x = 0 +end) + +open M -- cgit v1.2.3