diff options
author | xclerc <xclerc@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2013-09-20 12:57:59 +0000 |
---|---|---|
committer | xclerc <xclerc@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2013-09-20 12:57:59 +0000 |
commit | f361ba32a28796514b8d3469c7bee3f43ad61fc1 (patch) | |
tree | 3b630e7ea504e038cd7611da4710d79d315cd810 | |
parent | 4ac92a2aebe31ff4d5d2fce48701e5994391d7b9 (diff) |
Merge "circular_subtyping?.v" tests into a single "circular_subtyping.v" test.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16799 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r-- | test-suite/failure/circular_subtyping.v (renamed from test-suite/failure/circular_subtyping1.v) | 5 | ||||
-rw-r--r-- | test-suite/failure/circular_subtyping2.v | 8 |
2 files changed, 4 insertions, 9 deletions
diff --git a/test-suite/failure/circular_subtyping1.v b/test-suite/failure/circular_subtyping.v index e89539523..ceccd4607 100644 --- a/test-suite/failure/circular_subtyping1.v +++ b/test-suite/failure/circular_subtyping.v @@ -1,7 +1,10 @@ (* subtyping verification in presence of pseudo-circularity*) Module Type S. End S. Module Type T. Declare Module M:S. End T. - Module N:S. End N. Module NN <: T. Module M:=N. End NN. + Fail Module P <: T with Module M:=NN := NN. + +Module F (X:S) (Y:T with Module M:=X). End F. +Fail Module G := F N N.
\ No newline at end of file diff --git a/test-suite/failure/circular_subtyping2.v b/test-suite/failure/circular_subtyping2.v deleted file mode 100644 index f6de884db..000000000 --- a/test-suite/failure/circular_subtyping2.v +++ /dev/null @@ -1,8 +0,0 @@ -(*subtyping verification in presence of pseudo-circularity at functor application *) -Module Type S. End S. -Module Type T. Declare Module M:S. End T. -Module N:S. End N. - -Module F (X:S) (Y:T with Module M:=X). End F. - -Fail Module G := F N N.
\ No newline at end of file |