From c3607e368bf1d79c5ebaae2e8f9d3dba599953a5 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Thu, 27 May 2010 10:56:52 -0400 Subject: Fix bug in module path generation with module roots; push wildification through substructures --- tests/wildify.ur | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tests/wildify.ur (limited to 'tests/wildify.ur') 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 -- cgit v1.2.3