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/modnested.ur | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 tests/modnested.ur (limited to 'tests/modnested.ur') diff --git a/tests/modnested.ur b/tests/modnested.ur new file mode 100644 index 00000000..d9ff576d --- /dev/null +++ b/tests/modnested.ur @@ -0,0 +1,34 @@ +signature S = sig + type t + val x : t + + structure Q : sig + type q + val y : q + + structure V : sig + type v + end + end +end + +structure S = struct + type t = int + val x = 0 + + structure Q = struct + type q = float + val y = 0.0 + + structure V = struct + type v = string + val hi = "Hi" + end + end +end + +structure S1 = S +structure S2 : S = S +structure S3 = S2 + +val main = S3.Q.y -- cgit v1.2.3