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.ur | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tests/open.ur (limited to 'tests/open.ur') diff --git a/tests/open.ur b/tests/open.ur new file mode 100644 index 00000000..47f81219 --- /dev/null +++ b/tests/open.ur @@ -0,0 +1,20 @@ +structure S = struct + type t = int + val x = 0 + + structure S' : sig type u val y : t end = struct + type u = t + val y = x + end + + signature Sig = sig + type t + val x : t + end +end + +open S.S' +open S +open S' + +structure S' : Sig = S -- cgit v1.2.3