# HG changeset patch # User Adam Chlipala # Date 1213737092 14400 # Node ID ca58de3cb72b4ee661af5c72886c7100307b4d69 # Parent 1dfbd9e3e790b5a0dae20e9cc0dc70a519c74d0b Nested selfification test diff -r 1dfbd9e3e790 -r ca58de3cb72b tests/modnested.lac --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/modnested.lac Tue Jun 17 17:11:32 2008 -0400 @@ -0,0 +1,23 @@ +signature S = sig + type t + val x : t + + structure Q : sig + type q + val y : q + end +end + +structure S = struct + type t = int + val x = 0 + + structure Q = struct + type q = float + val y = 0.0 + end +end + +structure S1 = S +structure S2 : S = S +structure S3 = S2