aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
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