From aabe8dd88a80467442826e460e6b01f0dad2fb4d Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Thu, 26 Jun 2008 08:54:49 -0400 Subject: Proper hiding of shadowed bindings in principal signatures --- tests/strdupe.lac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests') diff --git a/tests/strdupe.lac b/tests/strdupe.lac index 834a48af..2a11aa51 100644 --- a/tests/strdupe.lac +++ b/tests/strdupe.lac @@ -1,11 +1,11 @@ val x = 0 -val x = 1 +val x = x type t = int -(*type t = int*) +type t = { A : t } signature S = sig end -(*signature S = sig end*) +signature S = sig type t structure M : S end structure S = struct end -(*structure S = struct end*) +structure S : S = struct type t = int structure M = S end -- cgit v1.2.3