comparison tests/wildify.ur @ 1264:79b2bcac6200

Fix bug in module path generation with module roots; push wildification through substructures
author Adam Chlipala <adamc@hcoop.net>
date Thu, 27 May 2010 10:56:52 -0400
parents
children
comparison
equal deleted inserted replaced
1263:be2ef50780ed 1264:79b2bcac6200
1 signature S = sig
2 type t
3 val x : t
4 end
5
6 signature T = sig
7 structure M : S
8
9 type u
10 val y : u
11
12 structure N : S
13 end
14
15 structure M : T = struct
16 structure M = struct
17 val x = True
18 end
19
20 val y = 0
21
22 structure N = struct
23 val x = "hi"
24 end
25 end