diff options
Diffstat (limited to 'test-suite/modules/objects2.v')
-rw-r--r-- | test-suite/modules/objects2.v | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test-suite/modules/objects2.v b/test-suite/modules/objects2.v new file mode 100644 index 00000000..e286609e --- /dev/null +++ b/test-suite/modules/objects2.v @@ -0,0 +1,11 @@ +(* Check that non logical object loading is done after registration of + the logical objects in the environment +*) + +(* Bug #1118 (simplified version), submitted by Evelyne Contejean + (used to failed in pre-V8.1 trunk because of a call to lookup_mind + for structure objects) +*) + +Module Type S. Record t : Set := { a : nat; b : nat }. End S. +Module Make (X:S). Module Y:=X. End Make. |