summaryrefslogtreecommitdiff
path: root/tests/wildify.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2010-05-27 10:56:52 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2010-05-27 10:56:52 -0400
commitc3607e368bf1d79c5ebaae2e8f9d3dba599953a5 (patch)
tree83a6f06ddec6d2f92ee3a541e507361f755df13b /tests/wildify.ur
parent2f00e5dc6efb08ae0e7d6540080aaa6a04135707 (diff)
Fix bug in module path generation with module roots; push wildification through substructures
Diffstat (limited to 'tests/wildify.ur')
-rw-r--r--tests/wildify.ur25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/wildify.ur b/tests/wildify.ur
new file mode 100644
index 00000000..8f64e1fd
--- /dev/null
+++ b/tests/wildify.ur
@@ -0,0 +1,25 @@
+signature S = sig
+ type t
+ val x : t
+end
+
+signature T = sig
+ structure M : S
+
+ type u
+ val y : u
+
+ structure N : S
+end
+
+structure M : T = struct
+ structure M = struct
+ val x = True
+ end
+
+ val y = 0
+
+ structure N = struct
+ val x = "hi"
+ end
+end