aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/modules/objects2.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2006-04-15 13:52:18 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2006-04-15 13:52:18 +0000
commite00eb08dc288fbc70788f5659ac15a15a19225a7 (patch)
tree848ce958a340c2fe5a1c9f9e6faf3e7c060d8018 /test-suite/modules/objects2.v
parentdcf1598f93e69010e0ca894a71fd3e7afca8337c (diff)
Test synchronisation chargement objets non logiques
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@8719 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/modules/objects2.v')
-rw-r--r--test-suite/modules/objects2.v11
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 000000000..e286609e5
--- /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.