aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-06-26 08:54:49 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-06-26 08:54:49 -0400
commitaabe8dd88a80467442826e460e6b01f0dad2fb4d (patch)
tree2c4168a9d016a992769bbb6a2eec11d27cdfad64 /tests
parent55ac3f4f2af733079401d83e98431e6d11b0fc59 (diff)
Proper hiding of shadowed bindings in principal signatures
Diffstat (limited to 'tests')
-rw-r--r--tests/strdupe.lac8
1 files changed, 4 insertions, 4 deletions
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