diff options
author | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2004-03-11 23:42:15 +0000 |
---|---|---|
committer | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2004-03-11 23:42:15 +0000 |
commit | 028e8461f20adcae3da265e55361f566f3929eae (patch) | |
tree | 38439361d1d7e0f54c766310d1c800c26fda2bd8 /test-suite | |
parent | 3320a366786ef02842b1327ebace1a1203b1e1b6 (diff) |
Test l'interprétation des scopes
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5460 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite')
-rw-r--r-- | test-suite/success/Scopes.v | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/success/Scopes.v b/test-suite/success/Scopes.v new file mode 100644 index 000000000..55d8343ef --- /dev/null +++ b/test-suite/success/Scopes.v @@ -0,0 +1,8 @@ +(* Check exportation of Argument Scopes even without import of modules *) + +Require Import ZArith. + +Module A. +Definition opp := Zopp. +End A. +Check (A.opp 3). |